summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/util.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-12-25 21:47:41 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-12-25 21:47:41 +0100
commit7584d36922669808b7c8a62667380453687b0ad9 (patch)
tree7f39c17d9bb10b47cf1a41df66b0fd621dc97eb8 /src/video_core/texture_cache/util.h
parenttexture_cache: Use pre-allocated buffer for texture downloads (diff)
downloadyuzu-7584d36922669808b7c8a62667380453687b0ad9.tar
yuzu-7584d36922669808b7c8a62667380453687b0ad9.tar.gz
yuzu-7584d36922669808b7c8a62667380453687b0ad9.tar.bz2
yuzu-7584d36922669808b7c8a62667380453687b0ad9.tar.lz
yuzu-7584d36922669808b7c8a62667380453687b0ad9.tar.xz
yuzu-7584d36922669808b7c8a62667380453687b0ad9.tar.zst
yuzu-7584d36922669808b7c8a62667380453687b0ad9.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/util.h b/src/video_core/texture_cache/util.h
index 2c991b4d2..d103db8ae 100644
--- a/src/video_core/texture_cache/util.h
+++ b/src/video_core/texture_cache/util.h
@@ -7,6 +7,7 @@
#include <span>
#include "common/common_types.h"
+#include "common/scratch_buffer.h"
#include "video_core/surface.h"
#include "video_core/texture_cache/image_base.h"
@@ -78,7 +79,7 @@ void ConvertImage(std::span<const u8> input, const ImageInfo& info, std::span<u8
void SwizzleImage(Tegra::MemoryManager& gpu_memory, GPUVAddr gpu_addr, const ImageInfo& info,
std::span<const BufferImageCopy> copies, std::span<const u8> memory,
- std::vector<u8>& tmp_buffer);
+ Common::ScratchBuffer<u8>& tmp_buffer);
[[nodiscard]] bool IsBlockLinearSizeCompatible(const ImageInfo& new_info,
const ImageInfo& overlap_info, u32 new_level,