summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.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/command_processor.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 'src/video_core/command_processor.cpp')
-rw-r--r--src/video_core/command_processor.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 2625ddfdc..f1aa6091b 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -14,6 +14,7 @@
#include "core/tracer/recorder.h"
#include "video_core/command_processor.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"
@@ -69,6 +70,9 @@ void GPU::ProcessCommandLists(const std::vector<CommandListHeader>& commands) {
case EngineID::MAXWELL_DMA_COPY_A:
maxwell_dma->WriteReg(method, value);
break;
+ case EngineID::KEPLER_INLINE_TO_MEMORY_B:
+ kepler_memory->WriteReg(method, value);
+ break;
default:
UNIMPLEMENTED_MSG("Unimplemented engine");
}