aboutsummaryrefslogtreecommitdiff
path: root/platform/iphone/detect.py
diff options
context:
space:
mode:
authorJuan Linietsky2015-01-13 11:23:05 -0300
committerJuan Linietsky2015-01-13 11:23:05 -0300
commit823d7ae3b554100fc35c6223568452c8fa7adf11 (patch)
treec2feed7fcbf86d534dde179bcc2e1b924d0e2187 /platform/iphone/detect.py
parent7c7ab30c4ef74f3e7a90ab6d23d69d545fac7cf3 (diff)
parent869f400179a32e951a44181165de48094693e280 (diff)
downloadgodot-823d7ae3b554100fc35c6223568452c8fa7adf11.tar.gz
godot-823d7ae3b554100fc35c6223568452c8fa7adf11.tar.zst
godot-823d7ae3b554100fc35c6223568452c8fa7adf11.zip
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r--platform/iphone/detect.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py
index f8d86a3c7..fb57876a8 100644
--- a/platform/iphone/detect.py
+++ b/platform/iphone/detect.py
@@ -26,7 +26,6 @@ def get_opts():
('game_center', 'Support for game center', 'yes'),
('store_kit', 'Support for in-app store', 'yes'),
('ios_gles22_override', 'Force GLES2.0 on iOS', 'yes'),
- ('ios_GLES1_override', 'Force legacy GLES (1.1) on iOS', 'no'),
('ios_appirater', 'Enable Appirater', 'no'),
('ios_exceptions', 'Use exceptions when compiling on playbook', 'yes'),
]
@@ -130,7 +129,7 @@ def configure(env):
env['ENV']['CODESIGN_ALLOCATE'] = '/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate'
- env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES2_ENABLED', '-DGLES1_ENABLED', '-DMPC_FIXED_POINT'])
+ env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES2_ENABLED', '-DMPC_FIXED_POINT'])
if env['ios_exceptions'] == 'yes':
env.Append(CPPFLAGS=['-fexceptions'])
else: