summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_dma.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-04-28 03:47:58 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-04-28 03:47:58 +0200
commit90e5694230c0b5a946f7cec6f8083476016a42be (patch)
tree2c34a1b6e99d790cf794a9db6f3ac9b1dca60a8a /src/video_core/engines/maxwell_dma.h
parentMerge pull request #3785 from ogniK5377/set-buffer-count-unit (diff)
downloadyuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar.gz
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar.bz2
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar.lz
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar.xz
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.tar.zst
yuzu-90e5694230c0b5a946f7cec6f8083476016a42be.zip
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r--src/video_core/engines/maxwell_dma.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h
index c43ed8194..65739f2e3 100644
--- a/src/video_core/engines/maxwell_dma.h
+++ b/src/video_core/engines/maxwell_dma.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/gpu.h"
namespace Core {
@@ -27,16 +28,16 @@ namespace Tegra::Engines {
* https://github.com/envytools/envytools/blob/master/rnndb/fifo/gk104_copy.xml
*/
-class MaxwellDMA final {
+class MaxwellDMA final : public EngineInterface {
public:
explicit MaxwellDMA(Core::System& system, MemoryManager& memory_manager);
~MaxwellDMA() = default;
/// 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 std::size_t NUM_REGS = 0x1D6;