summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-11-25 03:48:41 +0100
committerGitHub <noreply@github.com>2022-11-25 03:48:41 +0100
commit20b62dbd30e597c6d3700a22fbde5bd10169dfb2 (patch)
treefa6c840b3ba16eb261a30ef50a34a5d0f07587c6 /src/video_core/engines/maxwell_dma.h
parentMerge pull request #9312 from FernandoS27/pokemomma (diff)
parentFermi2D: Cleanup and address feedback. (diff)
downloadyuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.gz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.bz2
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.lz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.xz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.zst
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.zip
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r--src/video_core/engines/maxwell_dma.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h
index 953e34adc..d40d3d302 100644
--- a/src/video_core/engines/maxwell_dma.h
+++ b/src/video_core/engines/maxwell_dma.h
@@ -223,6 +223,8 @@ private:
void CopyPitchToBlockLinear();
+ void CopyBlockLinearToBlockLinear();
+
void FastCopyBlockLinearToPitch();
void ReleaseSemaphore();
@@ -234,6 +236,7 @@ private:
std::vector<u8> read_buffer;
std::vector<u8> write_buffer;
+ std::vector<u8> intermediate_buffer;
static constexpr std::size_t NUM_REGS = 0x800;
struct Regs {