summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-04-26 10:18:26 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:29 +0200
commitc5425b38c1a4d7eae270780d8b3ba66231015038 (patch)
treedc8e8c8970d3a1a2028ffc6470de668b29352457
parentshader: Move pipeline cache logic to separate files (diff)
downloadyuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar.gz
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar.bz2
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar.lz
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar.xz
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.tar.zst
yuzu-c5425b38c1a4d7eae270780d8b3ba66231015038.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_compute_pass.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/renderer_vulkan/vk_compute_pass.cpp b/src/video_core/renderer_vulkan/vk_compute_pass.cpp
index 7e5ba283b..8e426ce2c 100644
--- a/src/video_core/renderer_vulkan/vk_compute_pass.cpp
+++ b/src/video_core/renderer_vulkan/vk_compute_pass.cpp
@@ -238,10 +238,10 @@ ComputePass::ComputePass(const Device& device_, DescriptorPool& descriptor_pool,
ComputePass::~ComputePass() = default;
-Uint8Pass::Uint8Pass(const Device& device, VKScheduler& scheduler_, DescriptorPool& descriptor_pool,
- StagingBufferPool& staging_buffer_pool_,
+Uint8Pass::Uint8Pass(const Device& device_, VKScheduler& scheduler_,
+ DescriptorPool& descriptor_pool, StagingBufferPool& staging_buffer_pool_,
VKUpdateDescriptorQueue& update_descriptor_queue_)
- : ComputePass(device, descriptor_pool, INPUT_OUTPUT_DESCRIPTOR_SET_BINDINGS,
+ : ComputePass(device_, descriptor_pool, INPUT_OUTPUT_DESCRIPTOR_SET_BINDINGS,
INPUT_OUTPUT_DESCRIPTOR_UPDATE_TEMPLATE, INPUT_OUTPUT_BANK_INFO, {},
VULKAN_UINT8_COMP_SPV),
scheduler{scheduler_}, staging_buffer_pool{staging_buffer_pool_},