video_core/engines: Make memory manager members private

These aren't used externally by anything, so they can be made private
data members.
This commit is contained in:
Lioncash
2019-04-05 18:25:20 -04:00
parent 26223f8124
commit 22f02076c6
9 changed files with 14 additions and 13 deletions

View File

@ -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,