diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-13 23:25:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-13 23:25:07 -0500 |
commit | af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a (patch) | |
tree | fd0ae7648af62266a14ece488e7289ea169469b3 /src/video_core/gpu.h | |
parent | 0a55eb588b55a10ca8c864bbc82423a40245283d (diff) | |
parent | ac61a7d1e6575bde260ba482ba3594e70fcac358 (diff) |
Merge pull request #187 from Subv/maxwell3d_query
GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine.
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index a961f3fd4..ba7781756 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -26,7 +26,7 @@ class GPU final { public: GPU() { memory_manager = std::make_unique<MemoryManager>(); - maxwell_3d = std::make_unique<Engines::Maxwell3D>(); + maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager); fermi_2d = std::make_unique<Engines::Fermi2D>(); maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); } |