Commit 21bf71e6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

GLX: ignore version 1.3 and fallback to 1.2 until it works

parent 6159a120
......@@ -167,7 +167,11 @@ static bool CheckGLX (vout_display_t *vd, Display *dpy, bool *restrict pv13)
{
msg_Dbg (vd, "using GLX extension version %d.%d", major, minor);
ok = true;
#ifdef IT_WORKS
*pv13 = minor >= 3;
#else
*pv13 = false;
#endif
}
return ok;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment