diff options
| author | degasus <wickmarkus@web.de> | 2014-01-16 17:51:38 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2014-01-16 17:51:38 +0100 |
| commit | 5eae39766b011b40be6e8caab79e445b9dd3bd15 (patch) | |
| tree | b3e0389c18fa82ed4ec4d5e652dd4ac58ab89c34 /Source | |
| parent | 5fb8d07953a808b71e6cae6c2e6ed6bd8e104364 (diff) | |
enable buffer_storage on nvidia 331.38 on linux
it works fine here, and as the VSH is removed, this is the newest driver.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 5 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.h | 8 |
2 files changed, 2 insertions, 11 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index 3945035134..3f90b2f4af 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -51,10 +51,9 @@ namespace DriverDetails {OS_ALL, VENDOR_MESA, DRIVER_NOUVEAU, -1, BUG_BROKENUBO, 900, 916, true}, {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_ALL, VENDOR_ATI, DRIVER_ATI, -1, BUG_BROKENHACKEDBUFFER, -1.0, -1.0, true}, {OS_LINUX, VENDOR_ATI, DRIVER_ATI, -1, BUG_BROKENPINNEDMEMORY, -1.0, -1.0, true}, - {OS_ALL, VENDOR_MESA, DRIVER_NOUVEAU, -1, BUG_BROKENHACKEDBUFFER, -1.0, -1.0, true}, - {OS_ALL, VENDOR_NVIDIA, DRIVER_NVIDIA, -1, BUG_BROKENBUFFERSTORAGE, -1.0, 33220.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}, }; diff --git a/Source/Core/VideoCommon/DriverDetails.h b/Source/Core/VideoCommon/DriverDetails.h index 53915b59ce..384e372fb3 100644 --- a/Source/Core/VideoCommon/DriverDetails.h +++ b/Source/Core/VideoCommon/DriverDetails.h @@ -97,14 +97,6 @@ namespace DriverDetails // Nouveau stored the offset as u16 which isn't enough for all cases with range until 9.1.6 // I965 has broken data fetches from uniform buffers which results in a dithering until 9.2.0 BUG_BROKENUBO, - // Bug: The hacked buffer upload method isn't working - // This isn't a bug as the hacked buffer itself isn't used to work. - // I'm still surprised that it works on so many drivers. - // Affected devices: - amd close sourced driver - // - nouveau - // - maybe also some others - // This hack is evil. It's like free(pointer); *pointer = data; - BUG_BROKENHACKEDBUFFER, // Bug: The pinned memory extension isn't working for index buffers // Affected devices: AMD as they are the only vendor providing this extension // Started Version: ? |
