From c5959a5ffa54bb87cf654f54363637acb34becc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Wed, 2 Dec 2015 09:51:28 +0100 Subject: [PATCH] Fix regression in EglOnXBackend caused by b1914b4b2cc4a97d2522e8b83cee54b30f8a13c5 The ctor used by kwin_x11 still had the call to init which is now performed by SceneOpenGL. This means init was performed twice ultimately hitting an assert when creating the overlay window. --- eglonxbackend.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/eglonxbackend.cpp b/eglonxbackend.cpp index 4848e683b8..480e533d19 100644 --- a/eglonxbackend.cpp +++ b/eglonxbackend.cpp @@ -46,7 +46,6 @@ EglOnXBackend::EglOnXBackend() , m_rootWindow(rootWindow()) , m_x11ScreenNumber(kwinApp()->x11ScreenNumber()) { - init(); // Egl is always direct rendering setIsDirectRendering(true); }