diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-19 22:58:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-19 22:58:30 -0400 |
| commit | 48495695655210c91a36a4e847aaa73278949991 (patch) | |
| tree | daabac59bf0f4958aeaa3dbcf788728c8295f1bd /src/video_core/engines/maxwell_dma.h | |
| parent | bf66930fb9a9b22d0d21f3ad590085800f3cdde8 (diff) | |
| parent | 7e665c2721863fe9784dd3de4aa430434fb10cff (diff) | |
Merge pull request #1517 from bunnei/dma
GPU/DMA: Flush the source region and invalidate the destination region when doing a DMA transfer.
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
| -rw-r--r-- | src/video_core/engines/maxwell_dma.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h index df19e02e2..5f3704f05 100644 --- a/src/video_core/engines/maxwell_dma.h +++ b/src/video_core/engines/maxwell_dma.h @@ -12,11 +12,15 @@ #include "video_core/gpu.h" #include "video_core/memory_manager.h" +namespace VideoCore { +class RasterizerInterface; +} + namespace Tegra::Engines { class MaxwellDMA final { public: - explicit MaxwellDMA(MemoryManager& memory_manager); + explicit MaxwellDMA(VideoCore::RasterizerInterface& rasterizer, MemoryManager& memory_manager); ~MaxwellDMA() = default; /// Write the value to the register identified by method. @@ -133,6 +137,8 @@ public: MemoryManager& memory_manager; private: + VideoCore::RasterizerInterface& rasterizer; + /// Performs the copy from the source buffer to the destination buffer as configured in the /// registers. void HandleCopy(); |
