summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-07-20 23:35:05 +0200
committerGitHub <noreply@github.com>2021-07-20 23:35:05 +0200
commitc53b688411d916192820520ef5280ad5e378aa11 (patch)
tree6b319d4eaa3b7807b9590268f308b1c03fb5d3a1 /src/video_core/engines/maxwell_dma.h
parentMerge pull request #6658 from Morph1984/render-window-fix (diff)
parentBuffer cache: Fixes, Clang and Feedback. (diff)
downloadyuzu-c53b688411d916192820520ef5280ad5e378aa11.tar
yuzu-c53b688411d916192820520ef5280ad5e378aa11.tar.gz
yuzu-c53b688411d916192820520ef5280ad5e378aa11.tar.bz2
yuzu-c53b688411d916192820520ef5280ad5e378aa11.tar.lz
yuzu-c53b688411d916192820520ef5280ad5e378aa11.tar.xz
yuzu-c53b688411d916192820520ef5280ad5e378aa11.tar.zst
yuzu-c53b688411d916192820520ef5280ad5e378aa11.zip
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r--src/video_core/engines/maxwell_dma.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h
index 4ed0d0996..d3329b0f8 100644
--- a/src/video_core/engines/maxwell_dma.h
+++ b/src/video_core/engines/maxwell_dma.h
@@ -31,6 +31,8 @@ class AccelerateDMAInterface {
public:
/// Write the value to the register identified by method.
virtual bool BufferCopy(GPUVAddr src_address, GPUVAddr dest_address, u64 amount) = 0;
+
+ virtual bool BufferClear(GPUVAddr src_address, u64 amount, u32 value) = 0;
};
/**