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 33742deaf6
commit 1211a5623e
9 changed files with 14 additions and 13 deletions

View file

@ -43,10 +43,11 @@ public:
static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32),
"KeplerCompute Regs has wrong size");
MemoryManager& memory_manager;
/// Write the value to the register identified by method.
void CallMethod(const GPU::MethodCall& method_call);
private:
MemoryManager& memory_manager;
};
#define ASSERT_REG_POSITION(field_name, position) \