From ac61a7d1e6575bde260ba482ba3594e70fcac358 Mon Sep 17 00:00:00 2001 From: Subv Date: Mon, 12 Feb 2018 12:34:41 -0500 Subject: GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine. Only QueryMode::Write is supported at the moment. --- src/video_core/gpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/video_core/gpu.h') 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(); - maxwell_3d = std::make_unique(); + maxwell_3d = std::make_unique(*memory_manager); fermi_2d = std::make_unique(); maxwell_compute = std::make_unique(); } -- cgit v1.2.3