summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-11-06 12:50:54 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-11-24 20:35:44 +0100
commitdaf2ef8f1c4eba1117e3ce0c49f59f934f26ae88 (patch)
tree1a2f3ddb5c19e93404b29f029d63e45088f2a7d0 /src/video_core/engines/maxwell_dma.h
parentFermi2D: Implement Bilinear software filtering and address feedback. (diff)
downloadyuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar.gz
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar.bz2
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar.lz
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar.xz
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.tar.zst
yuzu-daf2ef8f1c4eba1117e3ce0c49f59f934f26ae88.zip
Diffstat (limited to '')
-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 {