summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_compute_pass.h
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_pass.h
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_pass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/vk_compute_pass.h b/src/video_core/renderer_vulkan/vk_compute_pass.h
index dcc691a8e..5d32e3caf 100644
--- a/src/video_core/renderer_vulkan/vk_compute_pass.h
+++ b/src/video_core/renderer_vulkan/vk_compute_pass.h
@@ -29,14 +29,14 @@ class ComputePass {
public:
explicit ComputePass(const Device& device, DescriptorPool& descriptor_pool,
vk::Span<VkDescriptorSetLayoutBinding> bindings,
- vk::Span<VkDescriptorUpdateTemplateEntryKHR> templates,
+ vk::Span<VkDescriptorUpdateTemplateEntry> templates,
const DescriptorBankInfo& bank_info,
vk::Span<VkPushConstantRange> push_constants, std::span<const u32> code);
~ComputePass();
protected:
const Device& device;
- vk::DescriptorUpdateTemplateKHR descriptor_template;
+ vk::DescriptorUpdateTemplate descriptor_template;
vk::PipelineLayout layout;
vk::Pipeline pipeline;
vk::DescriptorSetLayout descriptor_set_layout;