From 35aca0bf1f22379c82f26edade0d18eb47565cf4 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 7 Apr 2018 23:24:50 -0400 Subject: [PATCH] maxwell_3d: Make memory_manager public. --- src/video_core/engines/maxwell_3d.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 528bb31d33..9c6236c394 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -504,6 +504,7 @@ public: }; State state{}; + MemoryManager& memory_manager; /// Reads a register value located at the input method address u32 GetRegisterValue(u32 method) const; @@ -518,8 +519,6 @@ public: std::vector GetStageTextures(Regs::ShaderStage stage) const; private: - MemoryManager& memory_manager; - std::unordered_map> uploaded_macros; /// Macro method that is currently being executed / being fed parameters.