Revert "Turn off light ubershader generation on Broadcom GPUs."

See #16824

This reverts commit 1374fb040c.
This commit is contained in:
Henrik Rydgård 2023-04-07 16:43:50 +02:00
parent 07b8b6f35a
commit 3616e0fb3c

View file

@ -290,12 +290,6 @@ u32 GPU_Vulkan::CheckGPUFeatures() const {
features &= ~GPU_USE_FRAMEBUFFER_FETCH;
// }
// Check for Broadcom, disable ubershader. Should probably include a driver version check too...
// Attempt at fixing issue #16824
if (draw_->GetDeviceCaps().vendor == Draw::GPUVendor::VENDOR_BROADCOM) {
features &= ~GPU_USE_LIGHT_UBERSHADER;
}
return CheckGPUFeaturesLate(features);
}