diff options
| author | degasus <wickmarkus@web.de> | 2018-05-24 00:00:02 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2018-05-24 00:00:02 +0200 |
| commit | fdfd8b19d62dbd254046aaabdc4c7a9ee167467a (patch) | |
| tree | bb3497840a88f1558fe33d63ece53b20114f1a52 /Source/Core/VideoCommon | |
| parent | dfb1dbad47efeec60490f910254d53fe70b54477 (diff) | |
OGL/Streambuffer: Use coherent mapping by default.
Coherent mappings have a lower overhead and less GL codes.
So enables coherent mapping by default for all drivers.
Both Qualcomm and ARM performs very bad with explicit flushing, so this change helps them as well.
AFAIK there was one GPU generation which was slower on coherent mapping: nvidia tesla
So Geforce 200 and 300 series should be tested with this PR before merging.
As this was last tested many years ago, this issue might have been fixed as well.
Those GPUs are close to 10 years old and not supported any more by nvidia.
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.h | 9 |
2 files changed, 0 insertions, 11 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index b1440f8788..0a0e3e2b72 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -52,8 +52,6 @@ static BugInfo m_known_bugs[] = { BUG_BROKEN_BUFFER_STREAM, -1.0, -1.0, true}, {API_OPENGL, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_BROKEN_NEGATED_BOOLEAN, -1.0, -1.0, true}, - {API_OPENGL, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, - BUG_BROKEN_EXPLICIT_FLUSH, -1.0, -1.0, true}, {API_OPENGL, OS_ALL, VENDOR_ARM, DRIVER_ARM, Family::UNKNOWN, BUG_BROKEN_BUFFER_STREAM, -1.0, -1.0, true}, {API_OPENGL, OS_ALL, VENDOR_ARM, DRIVER_ARM, Family::UNKNOWN, BUG_BROKEN_VSYNC, -1.0, -1.0, diff --git a/Source/Core/VideoCommon/DriverDetails.h b/Source/Core/VideoCommon/DriverDetails.h index 7a92ffcc61..c698c12caf 100644 --- a/Source/Core/VideoCommon/DriverDetails.h +++ b/Source/Core/VideoCommon/DriverDetails.h @@ -200,15 +200,6 @@ enum Bug // Causes misrenderings on a large amount of things that draw lines. BUG_BROKEN_GEOMETRY_SHADERS, - // Bug: Explicit flush is very slow on Qualcomm - // Started Version: -1 - // Ended Version: -1 - // Our ARB_buffer_storage code uses explicit flush to avoid coherent mapping. - // Qualcomm seems to have lots of overhead on explicit flushing, but the coherent mapping path is - // fine. - // So let's use coherent mapping there. - BUG_BROKEN_EXPLICIT_FLUSH, - // Bug: glGetBufferSubData for bounding box reads is slow on AMD drivers // Started Version: -1 // Ended Version: -1 |
