summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.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_3d.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_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 3dfba8197..3d1e49c7c 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -19,6 +19,7 @@
#include "common/math_util.h"
#include "video_core/engines/const_buffer_engine_interface.h"
#include "video_core/engines/const_buffer_info.h"
+#include "video_core/engines/engine_interface.h"
#include "video_core/engines/engine_upload.h"
#include "video_core/engines/shader_type.h"
#include "video_core/gpu.h"
@@ -48,7 +49,7 @@ namespace Tegra::Engines {
#define MAXWELL3D_REG_INDEX(field_name) \
(offsetof(Tegra::Engines::Maxwell3D::Regs, field_name) / sizeof(u32))
-class Maxwell3D final : public ConstBufferEngineInterface {
+class Maxwell3D final : public ConstBufferEngineInterface, public EngineInterface {
public:
explicit Maxwell3D(Core::System& system, VideoCore::RasterizerInterface& rasterizer,
MemoryManager& memory_manager);
@@ -1357,13 +1358,13 @@ public:
u32 GetRegisterValue(u32 method) const;
/// 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;
/// Write the value to the register identified by method.
- void CallMethodFromMME(const GPU::MethodCall& method_call);
+ void CallMethodFromMME(u32 method, u32 method_argument);
void FlushMMEInlineDraw();