diff options
author | Benjamin Otte <otte@redhat.com> | 2016-11-22 19:45:04 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-12-05 15:02:47 +0100 |
commit | 77d336de17f9d6bf6ae3dc2a3427feeb88f5cadd (patch) | |
tree | 9ec740f80e8691a7d0bb7363997d483ef3046241 /gdk | |
parent | e42e27304a9e2d43db1f467a3cce10ab2ef20460 (diff) | |
download | gtk+-77d336de17f9d6bf6ae3dc2a3427feeb88f5cadd.tar.gz |
gdk: Never draw with GL
This is a temporary switch-off of the GL dawing code that will make
things keep running. All GL related code (like the GSK renderer or
GtkGLArea will now fall back to software.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkwindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index b70b3e5f76..c6ece27eae 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -2724,7 +2724,7 @@ gdk_window_begin_paint_internal (GdkWindow *window, surface_content = gdk_window_get_content (window); - window->current_paint.use_gl = window->impl_window->gl_paint_context != NULL; + window->current_paint.use_gl = FALSE; if (window->current_paint.use_gl) { |