summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-15 19:27:07 +0200
committerGitHub <noreply@github.com>2018-09-15 19:27:07 +0200
commitdaee15b058ffb0af1cdb91a986a126975c0edf93 (patch)
tree317f1ac6484afa41d1f5df1ebc08244141ca3084 /src/video_core/gpu.cpp
parentMerge pull request #1310 from lioncash/kernel-ns (diff)
parentGPU: Basic implementation of the Kepler Inline Memory engine (p2mf). (diff)
downloadyuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.gz
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.bz2
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.lz
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.xz
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.zst
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.zip
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 86a809f86..baa8b63b7 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -4,6 +4,7 @@
#include "common/assert.h"
#include "video_core/engines/fermi_2d.h"
+#include "video_core/engines/kepler_memory.h"
#include "video_core/engines/maxwell_3d.h"
#include "video_core/engines/maxwell_compute.h"
#include "video_core/engines/maxwell_dma.h"
@@ -27,6 +28,7 @@ GPU::GPU(VideoCore::RasterizerInterface& rasterizer) {
fermi_2d = std::make_unique<Engines::Fermi2D>(*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);
}
GPU::~GPU() = default;