aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-23 20:12:40 -0500
committerSubv <subv2112@gmail.com>2018-04-25 11:55:29 -0500
commitb1109931b9a92ce89635cb7c0c0c1c0c7e6866ed (patch)
tree8dc60c3b4fedc1300c0a66079df11197b4e366fa /src/video_core/gpu.cpp
parentc16cfbbc6c062491d84a6bc9976027b7a7587fdb (diff)
GPU: Added boilerplate code for the Fermi2D engine
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 9463cd5d66..351d217116 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -12,7 +12,7 @@ namespace Tegra {
GPU::GPU() {
memory_manager = std::make_unique<MemoryManager>();
maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager);
- fermi_2d = std::make_unique<Engines::Fermi2D>();
+ fermi_2d = std::make_unique<Engines::Fermi2D>(*memory_manager);
maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
}