diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-08 05:24:50 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-04-14 05:48:27 +0200 |
commit | 35aca0bf1f22379c82f26edade0d18eb47565cf4 (patch) | |
tree | 1aabb671f5a4785f25032ac43229e0ced97387d3 | |
parent | maxwell_3d: Fix shader_config decodings. (diff) | |
download | yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar.gz yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar.bz2 yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar.lz yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar.xz yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.tar.zst yuzu-35aca0bf1f22379c82f26edade0d18eb47565cf4.zip |
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 3 |
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. |