kwin/glx: Relax the GLX_CONFIG_CAVEAT requirement
Allow drawable configs with caveats. The ARGB32 visual is marked as non-conformant in the Catalyst driver. BUG: 317972
This commit is contained in:
parent
2e3fa0acd3
commit
209e44cad2
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ bool GlxBackend::initDrawableConfigs()
|
|||
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT | GLX_PIXMAP_BIT,
|
||||
GLX_X_VISUAL_TYPE, GLX_TRUE_COLOR,
|
||||
GLX_X_RENDERABLE, True,
|
||||
GLX_CONFIG_CAVEAT, GLX_NONE,
|
||||
GLX_CONFIG_CAVEAT, int(GLX_DONT_CARE), // The ARGB32 visual is marked non-conformant in Catalyst
|
||||
GLX_RED_SIZE, 5,
|
||||
GLX_GREEN_SIZE, 5,
|
||||
GLX_BLUE_SIZE, 5,
|
||||
|
|
Loading…
Reference in a new issue