From 1e29215b2e40a38b9324a719888749e12a74e99c Mon Sep 17 00:00:00 2001 From: Paul Olav Tvete Date: Tue, 8 Jan 2019 14:01:52 +0100 Subject: C++ examples: Delay compositor initialization until GL is ready When running with xcb_egl, the platform plugin's native interface is not always ready immediately after the QGuiApplication constructor is done. Calling QWaylandCompositor::create() at the time of initializeGL() makes sure that everything is ready. Change-Id: I9e5e434ff85b92a45caddfd393439a4ffe3bcdc6 Reviewed-by: Johan Helsing --- examples/wayland/qwindow-compositor/main.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'examples/wayland/qwindow-compositor/main.cpp') diff --git a/examples/wayland/qwindow-compositor/main.cpp b/examples/wayland/qwindow-compositor/main.cpp index f2b00e889..9d8c1f78f 100644 --- a/examples/wayland/qwindow-compositor/main.cpp +++ b/examples/wayland/qwindow-compositor/main.cpp @@ -59,7 +59,6 @@ int main(int argc, char *argv[]) Window window; Compositor compositor(&window); window.setCompositor(&compositor); - compositor.create(); window.resize(800,600); window.show(); -- cgit v1.2.3