From b76b1c6cf169a6e054438147b0138112c0afa603 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Fri, 21 Nov 2025 15:44:37 -0400 Subject: [PATCH] [Vk, pipeline_cache] Removing turnip for clamping memory --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index a108e3f50d..8761419c93 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -837,7 +837,6 @@ std::unique_ptr PipelineCache::CreateComputePipeline( // Clamp shared memory usage to device maximum to prevent missing textures/effects const auto driver_id = device.GetDriverID(); const bool is_mobile = driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY || - driver_id == VK_DRIVER_ID_MESA_TURNIP || driver_id == VK_DRIVER_ID_ARM_PROPRIETARY || driver_id == VK_DRIVER_ID_BROADCOM_PROPRIETARY || driver_id == VK_DRIVER_ID_IMAGINATION_PROPRIETARY;