mirror of
https://github.com/glfw/glfw.git
synced 2025-04-06 05:55:09 +00:00
GLX: Check whether client string is NULL
In very rare cases the X server reports the GLX extension as present but functions return invalid fallback values. Closes #912.
This commit is contained in:
parent
b0258803c6
commit
9cd378caa7
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ static GLFWbool chooseGLXFBConfig(const _GLFWfbconfig* desired, GLXFBConfig* res
|
|||
// HACK: This is a (hopefully temporary) workaround for Chromium
|
||||
// (VirtualBox GL) not setting the window bit on any GLXFBConfigs
|
||||
vendor = glXGetClientString(_glfw.x11.display, GLX_VENDOR);
|
||||
if (strcmp(vendor, "Chromium") == 0)
|
||||
if (vendor && strcmp(vendor, "Chromium") == 0)
|
||||
trustWindowBit = GLFW_FALSE;
|
||||
|
||||
nativeConfigs =
|
||||
|
|
Loading…
Add table
Reference in a new issue