diff options
| author | Stenzek <stenzek@gmail.com> | 2019-07-15 19:45:36 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2019-07-18 23:43:12 +1000 |
| commit | 68bd4cd79a7f00214fd0a21127cab5edce7b4af4 (patch) | |
| tree | 7db5436221b28a13b28460227ad02b5f18ab42bd /Source/Core/VideoCommon/DriverDetails.cpp | |
| parent | a77b571da7a31fe30f35605a90d040325cb1e595 (diff) | |
Vulkan: Use reversed depth range in viewport
Also adds a DriverDetails bug to disable on drivers where this is still
broken.
Diffstat (limited to 'Source/Core/VideoCommon/DriverDetails.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index 8acf227f12..85d94d5622 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -108,7 +108,10 @@ constexpr BugInfo m_known_bugs[] = { BUG_BROKEN_CLEAR_LOADOP_RENDERPASS, -1.0, -1.0, true}, {API_VULKAN, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_BROKEN_D32F_CLEAR, -1.0, -1.0, true}, -}; + {API_VULKAN, OS_ALL, VENDOR_MESA, DRIVER_I965, Family::UNKNOWN, BUG_BROKEN_REVERSED_DEPTH_RANGE, + -1.0, -1.0, true}, + {API_VULKAN, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, + BUG_BROKEN_REVERSED_DEPTH_RANGE, -1.0, -1.0, true}}; static std::map<Bug, BugInfo> m_bugs; |
