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_3d.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_3d.cpp')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index defcfbd3f..3c3ac8f81 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -7,11 +7,10 @@ #include "common/assert.h" #include "core/core.h" #include "core/core_timing.h" -#include "core/memory.h" #include "video_core/debug_utils/debug_utils.h" #include "video_core/engines/maxwell_3d.h" +#include "video_core/memory_manager.h" #include "video_core/rasterizer_interface.h" -#include "video_core/renderer_base.h" #include "video_core/textures/texture.h" namespace Tegra::Engines { @@ -21,8 +20,8 @@ constexpr u32 MacroRegistersStart = 0xE00; Maxwell3D::Maxwell3D(Core::System& system, VideoCore::RasterizerInterface& rasterizer, MemoryManager& memory_manager) - : memory_manager(memory_manager), system{system}, rasterizer{rasterizer}, - macro_interpreter(*this) { + : system{system}, rasterizer{rasterizer}, memory_manager{memory_manager}, macro_interpreter{ + *this} { InitializeRegisterDefaults(); } |
