diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-18 18:09:59 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-19 18:08:04 -0500 |
commit | 4bc2d821300354e0d178c520b4b3520afbf8ff20 (patch) | |
tree | 89c6eff1a2ac90fc106ea229de211411f5f4871b /src/video_core/host1x | |
parent | cfc34dd41d63f45b0587d089b8ec7fc2ed27c04e (diff) |
video_core: Add usages of ScratchBuffer
Diffstat (limited to 'src/video_core/host1x')
-rw-r--r-- | src/video_core/host1x/vic.h | 7 |
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 @@ #pragma once #include <memory> -#include <vector> + #include "common/common_types.h" +#include "common/scratch_buffer.h" struct SwsContext; @@ -49,8 +50,8 @@ private: /// size does not change during a stream using AVMallocPtr = std::unique_ptr<u8, decltype(&av_free)>; AVMallocPtr converted_frame_buffer; - std::vector<u8> luma_buffer; - std::vector<u8> chroma_buffer; + Common::ScratchBuffer<u8> luma_buffer; + Common::ScratchBuffer<u8> chroma_buffer; GPUVAddr config_struct_address{}; GPUVAddr output_surface_luma_address{}; |