summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-07 23:24:50 -0400
committerbunnei <bunneidev@gmail.com>2018-04-13 23:48:27 -0400
commit35aca0bf1f22379c82f26edade0d18eb47565cf4 (patch)
tree1aabb671f5a4785f25032ac43229e0ced97387d3 /src
parent33bb53571bf7ca394fa8b6d5107e8dfb5758f1d2 (diff)
maxwell_3d: Make memory_manager public.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 528bb31d3..9c6236c39 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<Texture::FullTextureInfo> GetStageTextures(Regs::ShaderStage stage) const;
private:
- MemoryManager& memory_manager;
-
std::unordered_map<u32, std::vector<u32>> uploaded_macros;
/// Macro method that is currently being executed / being fed parameters.