diff options
| author | bunnei <bunneidev@gmail.com> | 2020-05-05 17:12:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-05 17:12:42 -0400 |
| commit | 41682e0888f7cb640787ab8d9a7e5c0ebb83d8fa (patch) | |
| tree | 64c61fda0aaa076cd54c46e8c271e67888c79c61 /src/video_core/engines/kepler_memory.h | |
| parent | 88141bb2d44f26d1015be2cd832284bf322bc3b2 (diff) | |
| parent | eb2c50c5e692e13608c1d354473c3b22277c687e (diff) | |
Merge pull request #3815 from FernandoS27/command-list-2
GPU: More optimizations to GPU Command List Processing and DMA Copy Optimizations
Diffstat (limited to 'src/video_core/engines/kepler_memory.h')
| -rw-r--r-- | src/video_core/engines/kepler_memory.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/video_core/engines/kepler_memory.h b/src/video_core/engines/kepler_memory.h index bb26fb030..5b7f71a00 100644 --- a/src/video_core/engines/kepler_memory.h +++ b/src/video_core/engines/kepler_memory.h @@ -10,6 +10,7 @@ #include "common/bit_field.h" #include "common/common_funcs.h" #include "common/common_types.h" +#include "video_core/engines/engine_interface.h" #include "video_core/engines/engine_upload.h" #include "video_core/gpu.h" @@ -32,16 +33,17 @@ namespace Tegra::Engines { #define KEPLERMEMORY_REG_INDEX(field_name) \ (offsetof(Tegra::Engines::KeplerMemory::Regs, field_name) / sizeof(u32)) -class KeplerMemory final { +class KeplerMemory final : public EngineInterface { public: KeplerMemory(Core::System& system, MemoryManager& memory_manager); ~KeplerMemory(); /// Write the value to the register identified by method. - void CallMethod(const GPU::MethodCall& method_call); + void CallMethod(u32 method, u32 method_argument, bool is_last_call) override; /// Write multiple values to the register identified by method. - void CallMultiMethod(u32 method, const u32* base_start, u32 amount, u32 methods_pending); + void CallMultiMethod(u32 method, const u32* base_start, u32 amount, + u32 methods_pending) override; struct Regs { static constexpr size_t NUM_REGS = 0x7F; |
