summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_graphics_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_graphics_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 'src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp')
-rw-r--r--src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
index ef75c126c..e77a57a4a 100644
--- a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
+++ b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
@@ -830,7 +830,7 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) {
*/
}
VkPipelineCreateFlags flags{};
- if (device.IsKhrPipelineEexecutablePropertiesEnabled()) {
+ if (device.IsKhrPipelineExecutablePropertiesEnabled()) {
flags |= VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR;
}
pipeline = device.GetLogical().CreateGraphicsPipeline({