diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-11-22 20:51:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-11-22 20:51:56 -0300 |
commit | 9d635f06298f84a59160e8e8cce0187cde6cf74e (patch) | |
tree | 6d3890389f49c3345d0ff6541b406ec968cd2667 /platform/x11/os_x11.cpp | |
parent | 943d27f46ded993105928c4a46414aa16d84115e (diff) | |
download | redot-engine-9d635f06298f84a59160e8e8cce0187cde6cf74e.tar.gz |
Migrated from GLES to GLAD, fixes many issues.
Diffstat (limited to 'platform/x11/os_x11.cpp')
-rw-r--r-- | platform/x11/os_x11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp index d2d6e88c4b..581a930143 100644 --- a/platform/x11/os_x11.cpp +++ b/platform/x11/os_x11.cpp @@ -204,7 +204,7 @@ void OS_X11::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi #if defined(OPENGL_ENABLED) || defined(LEGACYGL_ENABLED) - context_gl = memnew( ContextGL_X11( x11_display, x11_window,current_videomode, false ) ); + context_gl = memnew( ContextGL_X11( x11_display, x11_window,current_videomode, true ) ); context_gl->initialize(); RasterizerGLES3::register_config(); |