diff options
author | bunnei <bunneidev@gmail.com> | 2019-04-06 05:44:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 05:44:27 +0200 |
commit | e3402d976d1ae0f3861d3d393b87c072047c6125 (patch) | |
tree | 21ed57282f9c8165d95612c149da583039f7253f /src/video_core/engines/maxwell_dma.h | |
parent | Merge pull request #2350 from lioncash/vmem (diff) | |
parent | video_core/engines: Make memory manager members private (diff) | |
download | yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar.gz yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar.bz2 yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar.lz yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar.xz yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.tar.zst yuzu-e3402d976d1ae0f3861d3d393b87c072047c6125.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r-- | src/video_core/engines/maxwell_dma.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h index 34c369320..c6b649842 100644 --- a/src/video_core/engines/maxwell_dma.h +++ b/src/video_core/engines/maxwell_dma.h @@ -10,12 +10,15 @@ #include "common/common_funcs.h" #include "common/common_types.h" #include "video_core/gpu.h" -#include "video_core/memory_manager.h" namespace Core { class System; } +namespace Tegra { +class MemoryManager; +} + namespace VideoCore { class RasterizerInterface; } @@ -139,13 +142,13 @@ public: }; } regs{}; - MemoryManager& memory_manager; - private: Core::System& system; VideoCore::RasterizerInterface& rasterizer; + MemoryManager& memory_manager; + /// Performs the copy from the source buffer to the destination buffer as configured in the /// registers. void HandleCopy(); |