mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-27 22:33:17 +00:00
- disabled OpenGL 3.0 on the Open Source Mesa driver for Linux because it appears to be broken.
This commit is contained in:
parent
2dec45ca39
commit
96623b3052
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ void gl_LoadExtensions()
|
||||||
}
|
}
|
||||||
|
|
||||||
// The minimum requirement for the modern render path are GL 3.0 + uniform buffers
|
// The minimum requirement for the modern render path are GL 3.0 + uniform buffers
|
||||||
if (gl_version < 3.0f || (gl_version < 3.1f && !CheckExtension("GL_ARB_uniform_buffer_object")))
|
if (gl_version < 3.0f || (gl_version < 3.1f && !CheckExtension("GL_ARB_uniform_buffer_object") && strstr(gl.vendorstring, "X.Org") == nullptr))
|
||||||
{
|
{
|
||||||
gl.legacyMode = true;
|
gl.legacyMode = true;
|
||||||
gl.lightmethod = LM_LEGACY;
|
gl.lightmethod = LM_LEGACY;
|
||||||
|
|
Loading…
Reference in a new issue