summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/texture_cache_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-07-20 22:51:25 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:27 +0100
commit8704c939136e88876d65fc670bce98d8250a6588 (patch)
treeed72be40d7eab387067678e32b285e9e5902f516 /src/video_core/texture_cache/texture_cache_base.h
parentTextureCache: Modify Viewports/Scissors according to Rescale. (diff)
downloadyuzu-8704c939136e88876d65fc670bce98d8250a6588.tar
yuzu-8704c939136e88876d65fc670bce98d8250a6588.tar.gz
yuzu-8704c939136e88876d65fc670bce98d8250a6588.tar.bz2
yuzu-8704c939136e88876d65fc670bce98d8250a6588.tar.lz
yuzu-8704c939136e88876d65fc670bce98d8250a6588.tar.xz
yuzu-8704c939136e88876d65fc670bce98d8250a6588.tar.zst
yuzu-8704c939136e88876d65fc670bce98d8250a6588.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/texture_cache_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache_base.h b/src/video_core/texture_cache/texture_cache_base.h
index 1f51fcee8..deddf0d30 100644
--- a/src/video_core/texture_cache/texture_cache_base.h
+++ b/src/video_core/texture_cache/texture_cache_base.h
@@ -316,7 +316,7 @@ private:
void PrepareImageView(ImageViewId image_view_id, bool is_modification, bool invalidate);
/// Execute copies from one image to the other, even if they are incompatible
- void CopyImage(ImageId dst_id, ImageId src_id, std::span<const ImageCopy> copies);
+ void CopyImage(ImageId dst_id, ImageId src_id, std::vector<ImageCopy> copies);
/// Bind an image view as render target, downloading resources preemtively if needed
void BindRenderTarget(ImageViewId* old_id, ImageViewId new_id);