summaryrefslogtreecommitdiff
path: root/src/video_core/host1x
diff options
context:
space:
mode:
authorGravatar ameerj2022-12-18 18:09:59 -0500
committerGravatar ameerj2022-12-19 18:08:04 -0500
commit4bc2d821300354e0d178c520b4b3520afbf8ff20 (patch)
tree89c6eff1a2ac90fc106ea229de211411f5f4871b /src/video_core/host1x
parentcommon: Add ScratchBuffer class (diff)
downloadyuzu-4bc2d821300354e0d178c520b4b3520afbf8ff20.tar.gz
yuzu-4bc2d821300354e0d178c520b4b3520afbf8ff20.tar.xz
yuzu-4bc2d821300354e0d178c520b4b3520afbf8ff20.zip
video_core: Add usages of ScratchBuffer
Diffstat (limited to 'src/video_core/host1x')
-rw-r--r--src/video_core/host1x/vic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/host1x/vic.h b/src/video_core/host1x/vic.h
index 2b78786e8..3d9753047 100644
--- a/src/video_core/host1x/vic.h
+++ b/src/video_core/host1x/vic.h
@@ -4,8 +4,9 @@
4#pragma once 4#pragma once
5 5
6#include <memory> 6#include <memory>
7#include <vector> 7
8#include "common/common_types.h" 8#include "common/common_types.h"
9#include "common/scratch_buffer.h"
9 10
10struct SwsContext; 11struct SwsContext;
11 12
@@ -49,8 +50,8 @@ private:
49 /// size does not change during a stream 50 /// size does not change during a stream
50 using AVMallocPtr = std::unique_ptr<u8, decltype(&av_free)>; 51 using AVMallocPtr = std::unique_ptr<u8, decltype(&av_free)>;
51 AVMallocPtr converted_frame_buffer; 52 AVMallocPtr converted_frame_buffer;
52 std::vector<u8> luma_buffer; 53 Common::ScratchBuffer<u8> luma_buffer;
53 std::vector<u8> chroma_buffer; 54 Common::ScratchBuffer<u8> chroma_buffer;
54 55
55 GPUVAddr config_struct_address{}; 56 GPUVAddr config_struct_address{};
56 GPUVAddr output_surface_luma_address{}; 57 GPUVAddr output_surface_luma_address{};