summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-20 04:58:30 +0200
committerGitHub <noreply@github.com>2018-10-20 04:58:30 +0200
commit48495695655210c91a36a4e847aaa73278949991 (patch)
treedaabac59bf0f4958aeaa3dbcf788728c8295f1bd /src/video_core/gpu.cpp
parentMerge pull request #1526 from lioncash/svc-id (diff)
parentGPU: Improved implementation of maxwell DMA (Subv). (diff)
downloadyuzu-48495695655210c91a36a4e847aaa73278949991.tar
yuzu-48495695655210c91a36a4e847aaa73278949991.tar.gz
yuzu-48495695655210c91a36a4e847aaa73278949991.tar.bz2
yuzu-48495695655210c91a36a4e847aaa73278949991.tar.lz
yuzu-48495695655210c91a36a4e847aaa73278949991.tar.xz
yuzu-48495695655210c91a36a4e847aaa73278949991.tar.zst
yuzu-48495695655210c91a36a4e847aaa73278949991.zip
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 9ba7e3533..83c7e5b0b 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -27,8 +27,8 @@ GPU::GPU(VideoCore::RasterizerInterface& rasterizer) {
maxwell_3d = std::make_unique<Engines::Maxwell3D>(rasterizer, *memory_manager);
fermi_2d = std::make_unique<Engines::Fermi2D>(rasterizer, *memory_manager);
maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
- maxwell_dma = std::make_unique<Engines::MaxwellDMA>(*memory_manager);
- kepler_memory = std::make_unique<Engines::KeplerMemory>(*memory_manager);
+ maxwell_dma = std::make_unique<Engines::MaxwellDMA>(rasterizer, *memory_manager);
+ kepler_memory = std::make_unique<Engines::KeplerMemory>(rasterizer, *memory_manager);
}
GPU::~GPU() = default;