summaryrefslogtreecommitdiffstats
path: root/src/video_core/control/channel_state.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-11-25 03:48:41 +0100
committerGitHub <noreply@github.com>2022-11-25 03:48:41 +0100
commit20b62dbd30e597c6d3700a22fbde5bd10169dfb2 (patch)
treefa6c840b3ba16eb261a30ef50a34a5d0f07587c6 /src/video_core/control/channel_state.cpp
parentMerge pull request #9312 from FernandoS27/pokemomma (diff)
parentFermi2D: Cleanup and address feedback. (diff)
downloadyuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.gz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.bz2
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.lz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.xz
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.tar.zst
yuzu-20b62dbd30e597c6d3700a22fbde5bd10169dfb2.zip
Diffstat (limited to 'src/video_core/control/channel_state.cpp')
-rw-r--r--src/video_core/control/channel_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/control/channel_state.cpp b/src/video_core/control/channel_state.cpp
index cdecc3a91..832025d75 100644
--- a/src/video_core/control/channel_state.cpp
+++ b/src/video_core/control/channel_state.cpp
@@ -20,7 +20,7 @@ void ChannelState::Init(Core::System& system, GPU& gpu) {
ASSERT(memory_manager);
dma_pusher = std::make_unique<Tegra::DmaPusher>(system, gpu, *memory_manager, *this);
maxwell_3d = std::make_unique<Engines::Maxwell3D>(system, *memory_manager);
- fermi_2d = std::make_unique<Engines::Fermi2D>();
+ fermi_2d = std::make_unique<Engines::Fermi2D>(*memory_manager);
kepler_compute = std::make_unique<Engines::KeplerCompute>(system, *memory_manager);
maxwell_dma = std::make_unique<Engines::MaxwellDMA>(system, *memory_manager);
kepler_memory = std::make_unique<Engines::KeplerMemory>(system, *memory_manager);