Given that Plasma and KRunner now (again, and maybe again not ultimately,

but whatever) default to ARGB visual if available, it's better to turn off
compositing if no GLX visual is found for depth 32.
CCBUG: 152595


svn path=/trunk/KDE/kdebase/workspace/; revision=739261
remotes/origin/Plasma/5.0
Luboš Luňák 19 years ago
parent c1ed1edb52
commit ff2d52e933
  1. 5
      scene_opengl.cpp

@ -550,6 +550,11 @@ bool SceneOpenGL::initDrawableConfigs()
kDebug( 1212 ) << "Couldn't find framebuffer configuration for default depth!";
return false;
}
if( fbcdrawableinfo[ 32 ].fbconfig == NULL )
{
kDebug( 1212 ) << "Couldn't find framebuffer configuration for depth 32!";
return false;
}
return true;
}

Loading…
Cancel
Save