From 77d336de17f9d6bf6ae3dc2a3427feeb88f5cadd Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 22 Nov 2016 19:45:04 +0100 Subject: [PATCH] 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. --- gdk/gdkwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {