summaryrefslogtreecommitdiff
path: root/platform/iphone/globals
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-02-09 22:10:30 -0300
commit0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac (patch)
tree276c4d099e178eb67fbd14f61d77b05e3808e9e3 /platform/iphone/globals
parent0e49da1687bc8192ed210947da52c9e5c5f301bb (diff)
GODOT IS OPEN SOURCE
Diffstat (limited to 'platform/iphone/globals')
-rw-r--r--platform/iphone/globals/global_defaults.cpp11
-rw-r--r--platform/iphone/globals/global_defaults.h3
2 files changed, 14 insertions, 0 deletions
diff --git a/platform/iphone/globals/global_defaults.cpp b/platform/iphone/globals/global_defaults.cpp
new file mode 100644
index 0000000000..63463ab366
--- /dev/null
+++ b/platform/iphone/globals/global_defaults.cpp
@@ -0,0 +1,11 @@
+
+#include "global_defaults.h"
+#include "globals.h"
+
+
+void register_iphone_global_defaults() {
+
+ GLOBAL_DEF("rasterizer.iOS/use_fragment_lighting",false);
+ GLOBAL_DEF("display.iOS/driver","GLES2");
+ Globals::get_singleton()->set_custom_property_info("display.iOS/driver",PropertyInfo(Variant::STRING,"display.iOS/driver",PROPERTY_HINT_ENUM,"GLES1,GLES2"));
+}
diff --git a/platform/iphone/globals/global_defaults.h b/platform/iphone/globals/global_defaults.h
new file mode 100644
index 0000000000..25f1ae687e
--- /dev/null
+++ b/platform/iphone/globals/global_defaults.h
@@ -0,0 +1,3 @@
+
+
+void register_iphone_global_defaults(); \ No newline at end of file