diff options
author | clayjohn <claynjohn@gmail.com> | 2019-04-29 11:51:09 -0700 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2019-05-02 14:24:20 -0700 |
commit | a3d5aec68dc63227e1271a91333cb2e901f24221 (patch) | |
tree | 421aca6aded336a841f93ba99e3acce0442c4031 /platform/android | |
parent | 90cc1d3c1d2e77ca72c5949b21a5c40738abcd81 (diff) |
added MSAA to GLES backend
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 6c67067db7..531e32101c 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -301,7 +301,7 @@ def configure(env): env.Append(CPPPATH=['#platform/android']) env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL']) - env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'android', 'log', 'z', 'dl']) + env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'GLESv2', 'android', 'log', 'z', 'dl']) # Return NDK version string in source.properties (adapted from the Chromium project). def get_ndk_version(path): |