Revert "turnip mhr base"

This commit is contained in:
CamilleLaVey 2026-01-31 01:35:56 -04:00 committed by Caio Oliveira
parent d69177fcba
commit 8932211b70
No known key found for this signature in database
GPG Key ID: AAAE6C7FD4186B0C
1 changed files with 1 additions and 2 deletions

View File

@ -831,8 +831,7 @@ std::unique_ptr<ComputePipeline> PipelineCache::CreateComputePipeline(
const VkDriverIdKHR driver_id = device.GetDriverID();
const bool needs_shared_mem_clamp =
driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY ||
driver_id == VK_DRIVER_ID_ARM_PROPRIETARY ||
driver_id == VK_DRIVER_ID_MESA_TURNIP;
driver_id == VK_DRIVER_ID_ARM_PROPRIETARY;
const u32 max_shared_memory = device.GetMaxComputeSharedMemorySize();
if (needs_shared_mem_clamp && program.shared_memory_size > max_shared_memory) {
LOG_WARNING(Render_Vulkan,