summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-14 05:25:07 +0100
committerGitHub <noreply@github.com>2018-02-14 05:25:07 +0100
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
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.gz
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.bz2
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.lz
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.xz
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.tar.zst
yuzu-af8ae770efbcbbcc9a9d79d1e6a2e47e1c7c6f3a.zip
Diffstat (limited to '')
-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 {
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>();
}