mirror of https://github.com/snes9xgit/snes9x.git
GTK+: GL: Use PBOs by default, disable on GL < 1.5
This commit is contained in:
parent
b6858adf11
commit
ffdf886a0a
|
@ -395,7 +395,10 @@ int S9xOpenGLDisplayDriver::opengl_defaults ()
|
||||||
|
|
||||||
if (config->use_pbos)
|
if (config->use_pbos)
|
||||||
{
|
{
|
||||||
using_pbos = true;
|
if (version >= 15)
|
||||||
|
using_pbos = true;
|
||||||
|
else
|
||||||
|
config->use_pbos = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
using_glsl_shaders = false;
|
using_glsl_shaders = false;
|
||||||
|
|
Loading…
Reference in New Issue