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:
parent
33742deaf6
commit
1211a5623e
9 changed files with 14 additions and 13 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue