summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 01:05:43 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 01:05:43 +0200
commite4ff140b99339589d87836f865fc437719adbbe9 (patch)
tree2033d609fed3ce6cb2728076e629caaa7e06cce8 /src/video_core/gpu.cpp
parentRevamp Kepler Memory to use a subegine to manage uploads (diff)
downloadyuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar.gz
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar.bz2
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar.lz
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar.xz
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.tar.zst
yuzu-e4ff140b99339589d87836f865fc437719adbbe9.zip
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 9db6e4763..52706505b 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -35,7 +35,7 @@ GPU::GPU(Core::System& system, VideoCore::RendererBase& renderer) : renderer{ren
dma_pusher = std::make_unique<Tegra::DmaPusher>(*this);
maxwell_3d = std::make_unique<Engines::Maxwell3D>(system, rasterizer, *memory_manager);
fermi_2d = std::make_unique<Engines::Fermi2D>(rasterizer, *memory_manager);
- kepler_compute = std::make_unique<Engines::KeplerCompute>(*memory_manager);
+ kepler_compute = std::make_unique<Engines::KeplerCompute>(system, rasterizer, *memory_manager);
maxwell_dma = std::make_unique<Engines::MaxwellDMA>(system, rasterizer, *memory_manager);
kepler_memory = std::make_unique<Engines::KeplerMemory>(system, *memory_manager);
}