diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-01-28 15:12:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-28 15:12:43 -0500 |
| commit | c2d8191fbb2115ddbf09bb026dd68b81d5624394 (patch) | |
| tree | e20a2d4d23e7b3671f1eda789c41a457c254190e /Source | |
| parent | f0136e0eb6468908c7883cdbc978225a2c8e9626 (diff) | |
| parent | 4f292f5ade1a1a6f63441882701a9873edc66537 (diff) | |
Merge pull request #10401 from JosJuice/adreno-primitive-restart
DriverDetails: Disable primitive restart on Adreno
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index 0852820735..829d050549 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -136,6 +136,10 @@ constexpr BugInfo m_known_bugs[] = { BUG_BROKEN_MULTITHREADED_SHADER_PRECOMPILATION, -1.0, -1.0, true}, {API_VULKAN, OS_ANDROID, VENDOR_ALL, DRIVER_ALL, Family::UNKNOWN, BUG_BROKEN_MULTITHREADED_SHADER_PRECOMPILATION, -1.0, -1.0, true}, + {API_OPENGL, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_PRIMITIVE_RESTART, + -1.0, -1.0, true}, + {API_VULKAN, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, BUG_PRIMITIVE_RESTART, + -1.0, -1.0, true}, }; static std::map<Bug, BugInfo> m_bugs; |
