Make kwin not crash under qemu due to failing glx call

This fixes a kwin crash that happened under qemu when running kwin for
the first time (subsequent runs had glx already disabled)
This commit is contained in:
Antonio Larrosa 2013-09-17 18:07:17 +02:00
parent 9a7e7074b7
commit 48057b33a8

View file

@ -222,6 +222,10 @@ bool GlxBackend::initBuffer()
if (overlayWindow()->create()) {
// Try to create double-buffered window in the overlay
XVisualInfo* visual = glXGetVisualFromFBConfig(display(), fbconfig);
if (!visual) {
kError(1212) << "Failed to get visual from fbconfig";
return false;
}
XSetWindowAttributes attrs;
attrs.colormap = XCreateColormap(display(), rootWindow(), visual->visual, AllocNone);
window = XCreateWindow(display(), overlayWindow()->window(), 0, 0, displayWidth(), displayHeight(),