Merge pull request #2 from degasus/enable_buffer_storage
OGL: remove version check for buffer_storage on windows
This commit is contained in:
commit
fabdd8ab39
|
@ -331,6 +331,9 @@ void InitDriverInfo()
|
|||
int glrelease = 0;
|
||||
int major = 0;
|
||||
int minor = 0;
|
||||
// TODO: this is known to be broken on windows
|
||||
// nvidia seems to have removed their driver version from this string, so we can't get it.
|
||||
// hopefully we'll never have to workaround nvidia bugs
|
||||
sscanf(g_ogl_config.gl_version, "%d.%d.%d NVIDIA %d.%d", &glmajor, &glminor, &glrelease, &major, &minor);
|
||||
version = 100*major + minor;
|
||||
}
|
||||
|
|
|
@ -52,7 +52,6 @@ namespace DriverDetails
|
|||
{OS_ALL, VENDOR_MESA, DRIVER_R600, -1, BUG_BROKENUBO, 900, 913, true},
|
||||
{OS_ALL, VENDOR_MESA, DRIVER_I965, -1, BUG_BROKENUBO, 900, 920, true},
|
||||
{OS_LINUX, VENDOR_ATI, DRIVER_ATI, -1, BUG_BROKENPINNEDMEMORY, -1.0, -1.0, true},
|
||||
{OS_WINDOWS,VENDOR_NVIDIA, DRIVER_NVIDIA, -1, BUG_BROKENBUFFERSTORAGE, -1.0, 33220.0, true},
|
||||
{OS_LINUX, VENDOR_NVIDIA, DRIVER_NVIDIA, -1, BUG_BROKENBUFFERSTORAGE, -1.0, 33138.0, true},
|
||||
{OS_OSX, VENDOR_INTEL, DRIVER_INTEL, 3000, BUG_PRIMITIVERESTART, -1.0, -1.0, true},
|
||||
{OS_WINDOWS,VENDOR_NVIDIA, DRIVER_NVIDIA, -1, BUG_BROKENUNSYNCMAPPING, -1.0, -1.0, true},
|
||||
|
|
Loading…
Reference in New Issue