diff options
| author | bunnei <bunneidev@gmail.com> | 2018-09-15 13:27:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-15 13:27:07 -0400 |
| commit | daee15b058ffb0af1cdb91a986a126975c0edf93 (patch) | |
| tree | 317f1ac6484afa41d1f5df1ebc08244141ca3084 /src/video_core/command_processor.cpp | |
| parent | df5a44a40b9d691f1e80f369c4aaa6ed89676955 (diff) | |
| parent | bb5eb4f20ac74e06317ed5b0c98282cde1f9e119 (diff) | |
Merge pull request #1271 from Subv/kepler_engine
GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).
Diffstat (limited to 'src/video_core/command_processor.cpp')
| -rw-r--r-- | src/video_core/command_processor.cpp | 4 |
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"); } |
