summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-07-26 09:33:00 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:28 +0100
commit0e8cf38f392f2ea6f7f5195070ad721b78590c04 (patch)
tree8c2d1a12b351f1e0d89700cf60681d8743857521 /src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
parentmain: Add resolution scale label in the status bar (diff)
downloadyuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.gz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.bz2
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.lz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.xz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.zst
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_compute_pipeline.cpp29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp b/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
index bda75788c..5c591e345 100644
--- a/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
+++ b/src/video_core/renderer_vulkan/vk_compute_pipeline.cpp
@@ -111,6 +111,7 @@ void ComputePipeline::Configure(Tegra::Engines::KeplerCompute& kepler_compute,
std::array<ImageId, max_elements> image_view_ids;
boost::container::static_vector<u32, max_elements> image_view_indices;
boost::container::static_vector<VkSampler, max_elements> samplers;
+ boost::container::static_vector<bool, max_elements> image_view_blacklist;
const auto& qmd{kepler_compute.launch_description};
const auto& cbufs{qmd.const_buffer_config};
@@ -151,10 +152,34 @@ void ComputePipeline::Configure(Tegra::Engines::KeplerCompute& kepler_compute,
samplers.push_back(sampler->Handle());
}
}
- std::ranges::for_each(info.image_descriptors, add_image);
+ const u32 black_list_base = image_view_indices.size();
+ bool atleast_one_blacklisted = false;
+ for (const auto& desc : info.image_descriptors) {
+ const bool is_black_listed =
+ desc.is_written && (desc.type == Shader::TextureType::Color2D ||
+ desc.type == Shader::TextureType::ColorArray2D);
+ for (u32 index = 0; index < desc.count; ++index) {
+ image_view_blacklist.push_back(is_black_listed);
+ }
+ atleast_one_blacklisted |= is_black_listed;
+ add_image(desc);
+ }
const std::span indices_span(image_view_indices.data(), image_view_indices.size());
- texture_cache.FillComputeImageViews(indices_span, image_view_ids);
+ bool has_listed_stuffs;
+ do {
+ has_listed_stuffs = false;
+ texture_cache.FillComputeImageViews(indices_span, image_view_ids);
+ if (atleast_one_blacklisted) {
+ for (u32 index = 0; index < image_view_blacklist.size(); index++) {
+ if (image_view_blacklist[index]) {
+ ImageView& image_view{
+ texture_cache.GetImageView(image_view_ids[index + black_list_base])};
+ has_listed_stuffs |= texture_cache.BlackListImage(image_view.image_id);
+ }
+ }
+ }
+ } while (has_listed_stuffs);
buffer_cache.UnbindComputeTextureBuffers();
ImageId* texture_buffer_ids{image_view_ids.data()};