summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-04 18:14:06 +0100
committerGitHub <noreply@github.com>2022-12-04 18:14:06 +0100
commitec547824f1f6c347339895057288a990222f21f8 (patch)
tree2c2e2d8c82aa7113d90882a63fdf4ea2e475be09 /src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
parentMerge pull request #9379 from liamwhite/cmake-mess (diff)
parentvulkan_common: add feature test for shaderDrawParameters (diff)
downloadyuzu-ec547824f1f6c347339895057288a990222f21f8.tar
yuzu-ec547824f1f6c347339895057288a990222f21f8.tar.gz
yuzu-ec547824f1f6c347339895057288a990222f21f8.tar.bz2
yuzu-ec547824f1f6c347339895057288a990222f21f8.tar.lz
yuzu-ec547824f1f6c347339895057288a990222f21f8.tar.xz
yuzu-ec547824f1f6c347339895057288a990222f21f8.tar.zst
yuzu-ec547824f1f6c347339895057288a990222f21f8.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_compute_pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp b/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
index 7906e11a8..04a3a861e 100644
--- a/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
+++ b/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
@@ -53,7 +53,7 @@ ComputePipeline::ComputePipeline(const Device& device_, DescriptorPool& descript
.requiredSubgroupSize = GuestWarpSize,
};
VkPipelineCreateFlags flags{};
- if (device.IsKhrPipelineEexecutablePropertiesEnabled()) {
+ if (device.IsKhrPipelineExecutablePropertiesEnabled()) {
flags |= VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR;
}
pipeline = device.GetLogical().CreateComputePipeline({