summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-02-13 23:25:07 -0500
committerGravatar GitHub2018-02-13 23:25:07 -0500
commitaf8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a (patch)
treefd0ae7648af62266a14ece488e7289ea169469b3 /src/video_core/gpu.h
parentaudren_u: Schedule reoccuring event. (#183) (diff)
parentGPU: Partially implemented the QUERY_* registers in the Maxwell3D engine. (diff)
downloadyuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.gz
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.xz
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.zip
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.h2
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 {
26public: 26public:
27 GPU() { 27 GPU() {
28 memory_manager = std::make_unique<MemoryManager>(); 28 memory_manager = std::make_unique<MemoryManager>();
29 maxwell_3d = std::make_unique<Engines::Maxwell3D>(); 29 maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager);
30 fermi_2d = std::make_unique<Engines::Fermi2D>(); 30 fermi_2d = std::make_unique<Engines::Fermi2D>();
31 maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); 31 maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
32 } 32 }