summaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2023-05-07 23:34:52 +0200
committerGravatar Fernando Sahmkow2023-05-07 23:46:12 +0200
commit8014dd82594dbb40e13749203e67b21e8447733c (patch)
treeb874061d30aa6a03fd3c92116df92ed6d3b91a19 /src/video_core/texture_cache
parentBuffer Cache: disable reactive flushing in it. (diff)
downloadyuzu-8014dd82594dbb40e13749203e67b21e8447733c.tar.gz
yuzu-8014dd82594dbb40e13749203e67b21e8447733c.tar.xz
yuzu-8014dd82594dbb40e13749203e67b21e8447733c.zip
Texture cache: Only force flush the dma downloads
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r--src/video_core/texture_cache/texture_cache.h4
-rw-r--r--src/video_core/texture_cache/texture_cache_base.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index d49f3a7a0..e1198dcf8 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -811,7 +811,7 @@ void TextureCache<P>::PopAsyncFlushes() {
811} 811}
812 812
813template <class P> 813template <class P>
814ImageId TextureCache<P>::DmaImageId(const Tegra::DMA::ImageOperand& operand) { 814ImageId TextureCache<P>::DmaImageId(const Tegra::DMA::ImageOperand& operand, bool is_upload) {
815 const ImageInfo dst_info(operand); 815 const ImageInfo dst_info(operand);
816 const ImageId dst_id = FindDMAImage(dst_info, operand.address); 816 const ImageId dst_id = FindDMAImage(dst_info, operand.address);
817 if (!dst_id) { 817 if (!dst_id) {
@@ -822,7 +822,7 @@ ImageId TextureCache<P>::DmaImageId(const Tegra::DMA::ImageOperand& operand) {
822 // No need to waste time on an image that's synced with guest 822 // No need to waste time on an image that's synced with guest
823 return NULL_IMAGE_ID; 823 return NULL_IMAGE_ID;
824 } 824 }
825 if (!image.info.dma_downloaded) { 825 if (!is_upload && !image.info.dma_downloaded) {
826 // Force a full sync. 826 // Force a full sync.
827 image.info.dma_downloaded = true; 827 image.info.dma_downloaded = true;
828 return NULL_IMAGE_ID; 828 return NULL_IMAGE_ID;
diff --git a/src/video_core/texture_cache/texture_cache_base.h b/src/video_core/texture_cache/texture_cache_base.h
index 01f5ac588..0720494e5 100644
--- a/src/video_core/texture_cache/texture_cache_base.h
+++ b/src/video_core/texture_cache/texture_cache_base.h
@@ -207,7 +207,7 @@ public:
207 /// Pop asynchronous downloads 207 /// Pop asynchronous downloads
208 void PopAsyncFlushes(); 208 void PopAsyncFlushes();
209 209
210 [[nodiscard]] ImageId DmaImageId(const Tegra::DMA::ImageOperand& operand); 210 [[nodiscard]] ImageId DmaImageId(const Tegra::DMA::ImageOperand& operand, bool is_upload);
211 211
212 [[nodiscard]] std::pair<Image*, BufferImageCopy> DmaBufferImageCopy( 212 [[nodiscard]] std::pair<Image*, BufferImageCopy> DmaBufferImageCopy(
213 const Tegra::DMA::ImageCopy& copy_info, const Tegra::DMA::BufferOperand& buffer_operand, 213 const Tegra::DMA::ImageCopy& copy_info, const Tegra::DMA::BufferOperand& buffer_operand,