diff options
| author | bunnei <bunneidev@gmail.com> | 2019-04-05 23:44:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-05 23:44:27 -0400 |
| commit | e3402d976d1ae0f3861d3d393b87c072047c6125 (patch) | |
| tree | 21ed57282f9c8165d95612c149da583039f7253f /src/video_core/engines/maxwell_dma.cpp | |
| parent | 89b8801a97da0cd361ce8377883fb7b33f8077ad (diff) | |
| parent | 22f02076c627a99def4c453d117d7f5fe4d87bea (diff) | |
Merge pull request #2346 from lioncash/header
video_core/engines: Remove unnecessary inclusions where applicable
Diffstat (limited to 'src/video_core/engines/maxwell_dma.cpp')
| -rw-r--r-- | src/video_core/engines/maxwell_dma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp index 5cca5c29a..2426d0067 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp @@ -5,9 +5,9 @@ #include "common/assert.h" #include "common/logging/log.h" #include "core/core.h" -#include "core/memory.h" #include "video_core/engines/maxwell_3d.h" #include "video_core/engines/maxwell_dma.h" +#include "video_core/memory_manager.h" #include "video_core/rasterizer_interface.h" #include "video_core/renderer_base.h" #include "video_core/textures/decoders.h" @@ -16,7 +16,7 @@ namespace Tegra::Engines { MaxwellDMA::MaxwellDMA(Core::System& system, VideoCore::RasterizerInterface& rasterizer, MemoryManager& memory_manager) - : memory_manager(memory_manager), system{system}, rasterizer{rasterizer} {} + : system{system}, rasterizer{rasterizer}, memory_manager{memory_manager} {} void MaxwellDMA::CallMethod(const GPU::MethodCall& method_call) { ASSERT_MSG(method_call.method < Regs::NUM_REGS, |
