mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 23:32:02 +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
ca9523acef
commit
f30b2ca80d
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
|
||||
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.lightmethod = LM_LEGACY;
|
||||
|
|
Loading…
Reference in a new issue