diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-04-23 21:24:30 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:29 -0400 |
commit | 8fda599a316b7b3a5e017cb01db1e9c021ce7654 (patch) | |
tree | 2c807b1917869c520f556b235cd17e095950f509 /src | |
parent | 50eb03382e8ac8eb4aeb7cdc488a7ee097fec39d (diff) |
vk_compute_pipeline: Fix index comparison oversight on compute texture buffers
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_vulkan/vk_compute_pipeline.cpp | 2 |
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 6611c1de3..990ead575 100644 --- a/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp +++ b/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp @@ -136,7 +136,7 @@ void ComputePipeline::Configure(Tegra::Engines::KeplerCompute& kepler_compute, ImageId* texture_buffer_ids{image_view_ids.data()}; size_t index{}; const auto add_buffer{[&](const auto& desc) { - for (u32 i = 0; index < desc.count; ++i) { + for (u32 i = 0; i < desc.count; ++i) { bool is_written{false}; if constexpr (std::is_same_v<decltype(desc), const Shader::ImageBufferDescriptor&>) { is_written = desc.is_written; |