Skip to content

Commit e942ba6

Browse files
committed
Remove driver version check for Mali stencil/discard bug. See #13833
1 parent 8fc2422 commit e942ba6

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Common/GPU/Vulkan/thin3d_vulkan.cpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -823,11 +823,8 @@ VKContext::VKContext(VulkanContext *vulkan, bool splitSubmit)
823823
// corrupt the depth buffer. This is easily worked around by simply scaling Z down a tiny bit when this case
824824
// is detected. See: https://github.com/hrydgard/ppsspp/issues/11937
825825
bugs_.Infest(Bugs::EQUAL_WZ_CORRUPTS_DEPTH);
826-
827-
if (IsHashMaliDriverVersion(deviceProps) || VK_VERSION_MAJOR(deviceProps.driverVersion) <= 16) {
828-
// At least one driver at the upper end of the range is known to be likely to suffer from the bug causing issue #13833 (Midnight Club map broken).
829-
bugs_.Infest(Bugs::MALI_STENCIL_DISCARD_BUG);
830-
}
826+
// At least one driver at the upper end of the range is known to be likely to suffer from the bug causing issue #13833 (Midnight Club map broken).
827+
bugs_.Infest(Bugs::MALI_STENCIL_DISCARD_BUG);
831828
}
832829

833830
caps_.deviceID = deviceProps.deviceID;

0 commit comments

Comments
 (0)