summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-06 05:44:27 +0200
committerGitHub <noreply@github.com>2019-04-06 05:44:27 +0200
commite3402d976d1ae0f3861d3d393b87c072047c6125 (patch)
tree21ed57282f9c8165d95612c149da583039f7253f /src/video_core/engines/maxwell_dma.h
parentMerge pull request #2350 from lioncash/vmem (diff)
parentvideo_core/engines: Make memory manager members private (diff)
downloadyuzu-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.h9
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();