aboutsummaryrefslogtreecommitdiff
path: root/drivers/gles3/rasterizer_gles3.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2016-10-29 20:48:09 -0300
committerJuan Linietsky2016-10-29 20:48:09 -0300
commitd6567010bf1c65abcbe09b959cde63664778d923 (patch)
tree5a1ec061f317770c41ece7bb378c0ab2dbb2aef4 /drivers/gles3/rasterizer_gles3.cpp
parent53d8f2b1ec1d86b189800b7fe156c464fdf9e380 (diff)
downloadgodot-d6567010bf1c65abcbe09b959cde63664778d923.tar.gz
godot-d6567010bf1c65abcbe09b959cde63664778d923.tar.zst
godot-d6567010bf1c65abcbe09b959cde63664778d923.zip
Diffstat (limited to 'drivers/gles3/rasterizer_gles3.cpp')
-rw-r--r--drivers/gles3/rasterizer_gles3.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gles3/rasterizer_gles3.cpp b/drivers/gles3/rasterizer_gles3.cpp
index 83c40edc1..e838020c4 100644
--- a/drivers/gles3/rasterizer_gles3.cpp
+++ b/drivers/gles3/rasterizer_gles3.cpp
@@ -253,10 +253,8 @@ void RasterizerGLES3::make_current() {
void RasterizerGLES3::register_config() {
- GLOBAL_DEF("rendering/gles3/framebuffer_format",RasterizerStorageGLES3::FBO_FORMAT_FLOAT);
- Globals::get_singleton()->set_custom_property_info("rendering/gles3/framebuffer_format",PropertyInfo(Variant::INT,"",PROPERTY_HINT_ENUM,"16 Bits,32 Bits,Half Float"));
- GLOBAL_DEF("rendering/gles3/lighting_technique",1);
- Globals::get_singleton()->set_custom_property_info("rendering/gles3/lighting_technique",PropertyInfo(Variant::INT,"",PROPERTY_HINT_ENUM,"Forward,Deferred"));
+ GLOBAL_DEF("rendering/gles3/render_architecture",0);
+ Globals::get_singleton()->set_custom_property_info("rendering/gles3/render_architecture",PropertyInfo(Variant::INT,"",PROPERTY_HINT_ENUM,"Desktop,Mobile"));
GLOBAL_DEF("rendering/gles3/use_nearest_mipmap_filter",false);
GLOBAL_DEF("rendering/gles3/anisotropic_filter_level",4.0);