summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-09-08 22:58:20 +0200
committerSubv <subv2112@gmail.com>2018-09-12 20:57:08 +0200
commitbb5eb4f20ac74e06317ed5b0c98282cde1f9e119 (patch)
treee1b89238165f33c65ff7909eabd846be5f58785c /src/video_core/gpu.cpp
parentMerge pull request #1303 from lioncash/error (diff)
downloadyuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar.gz
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar.bz2
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar.lz
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar.xz
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.tar.zst
yuzu-bb5eb4f20ac74e06317ed5b0c98282cde1f9e119.zip
Diffstat (limited to '')
-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;