summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2023-05-02 16:44:28 -0700
committerGravatar lat9nq2023-05-07 01:06:22 -0400
commit6ed6e6e18e99bdfb4518647abd36a4cf9fc1c083 (patch)
treea9840cc7684bdd6cae7a4cd7ac0c3830decf8c5f
parentsettings: Add enable compute pipelines (diff)
downloadyuzu-6ed6e6e18e99bdfb4518647abd36a4cf9fc1c083.tar.gz
yuzu-6ed6e6e18e99bdfb4518647abd36a4cf9fc1c083.tar.xz
yuzu-6ed6e6e18e99bdfb4518647abd36a4cf9fc1c083.zip
vk_pipeline_cache: Use setting to disable intel compute
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index a318d643e..e5219e7e0 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -698,7 +698,8 @@ std::unique_ptr<ComputePipeline> PipelineCache::CreateComputePipeline(
698 PipelineStatistics* statistics, bool build_in_parallel) try { 698 PipelineStatistics* statistics, bool build_in_parallel) try {
699 // TODO: Remove this when Intel fixes their shader compiler. 699 // TODO: Remove this when Intel fixes their shader compiler.
700 // https://github.com/IGCIT/Intel-GPU-Community-Issue-Tracker-IGCIT/issues/159 700 // https://github.com/IGCIT/Intel-GPU-Community-Issue-Tracker-IGCIT/issues/159
701 if (device.GetDriverID() == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) { 701 if (device.GetDriverID() == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS &&
702 !Settings::values.enable_compute_pipelines.GetValue()) {
702 LOG_ERROR(Render_Vulkan, "Skipping 0x{:016x}", key.Hash()); 703 LOG_ERROR(Render_Vulkan, "Skipping 0x{:016x}", key.Hash());
703 return nullptr; 704 return nullptr;
704 } 705 }