diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-15 15:42:58 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-15 15:42:58 -0300 |
commit | 089d7fa171e3a3305991047e82b4043d4f05783f (patch) | |
tree | a41af5ab93f6d745962e471da8dc6003e6b8e430 /drivers/theoraplayer | |
parent | be4e40e90a5a322f6a7cec4893854ef5b15db600 (diff) |
Small batch of fixes
-=-=-=-=-=-=-=-=-=-=
-Fixed looping error in AudioStreamResampled
-winrt port progress
-fixes in material in ambient light
Diffstat (limited to 'drivers/theoraplayer')
-rw-r--r-- | drivers/theoraplayer/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/theoraplayer/SCsub b/drivers/theoraplayer/SCsub index d4218debb6..cd8cabcc94 100644 --- a/drivers/theoraplayer/SCsub +++ b/drivers/theoraplayer/SCsub @@ -78,6 +78,9 @@ else: if env["platform"] == "android": env_theora.Append(CPPFLAGS=["-D_ANDROID"]) +if env["platform"] == "winrt": + env_theora.Append(CPPFLAGS=["-D_WINRT"]) + env_theora.Append(CPPPATH=["#drivers/theoraplayer/include/theoraplayer", "#drivers/theoraplayer/src/YUV", "#drivers/theoraplayer/src/YUV/libyuv/include", "#drivers/theoraplayer/src/Theora", "#drivers/theoraplayer/src/AVFoundation"]) objs = [] |