From 2133d56fb62ff4d98ffa830dcf279fd8d1974c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 23 Apr 2011 16:27:23 +0200 Subject: [PATCH] Call setupOverlay also from GLES backend This fixes my issue that mouse events are eaten on R600G. I am a little bit surprised that it worked at all with nouveau. Now my issues are fixed and finally, finally my primary system uses the free driver stack (though only GLES). --- scene_opengl_egl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene_opengl_egl.cpp b/scene_opengl_egl.cpp index 39e2bf7469..876948ed56 100644 --- a/scene_opengl_egl.cpp +++ b/scene_opengl_egl.cpp @@ -99,6 +99,8 @@ bool SceneOpenGL::initRenderingContext() if (!wspace->createOverlay()) { kError(1212) << "Could not get overlay window"; return false; + } else { + wspace->setupOverlay(None); } surface = eglCreateWindowSurface(dpy, config, wspace->overlayWindow(), 0);