Browse Source

[Vk, pipeline_cache] Removing turnip for clamping memory

stuffmadeforfun
CamilleLaVey 1 month ago
parent
commit
b76b1c6cf1
  1. 1
      src/video_core/renderer_vulkan/vk_pipeline_cache.cpp

1
src/video_core/renderer_vulkan/vk_pipeline_cache.cpp

@ -837,7 +837,6 @@ std::unique_ptr<ComputePipeline> 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;

Loading…
Cancel
Save