summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-03 13:39:39 +0200
committerLioncash <mathew1800@gmail.com>2020-08-03 18:28:57 +0200
commit06809ad7bc8055463328dbf5aa67053b541ede22 (patch)
tree577fcfce3189d46d617f43ba941b517938353d2a /src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
parentMerge pull request #4437 from lioncash/ptr (diff)
downloadyuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar.gz
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar.bz2
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar.lz
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar.xz
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.tar.zst
yuzu-06809ad7bc8055463328dbf5aa67053b541ede22.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index 42b3a744c..418c62bc4 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -261,8 +261,13 @@ VKComputePipeline& VKPipelineCache::GetComputePipeline(const ComputePipelineCach
}
const Specialization specialization{
+ .base_binding = 0,
.workgroup_size = key.workgroup_size,
.shared_memory_size = key.shared_memory_size,
+ .point_size = std::nullopt,
+ .enabled_attributes = {},
+ .attribute_types = {},
+ .ndc_minus_one_to_one = false,
};
const SPIRVShader spirv_shader{Decompile(device, shader->GetIR(), ShaderType::Compute,
shader->GetRegistry(), specialization),