summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2020-06-02 08:37:06 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2020-06-02 08:37:06 +0200
commit3a20e74f4056a03253e563510048e99ea548d5b4 (patch)
treeebdd756d53851ea51af7765824bfc327a83264e4 /src/video_core/engines/maxwell_3d.cpp
parentFavor switch case over jump table (diff)
downloadyuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar.gz
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar.bz2
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar.lz
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar.xz
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.tar.zst
yuzu-3a20e74f4056a03253e563510048e99ea548d5b4.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 934a1d6db..0c0a7c1ed 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -115,7 +115,7 @@ void Maxwell3D::InitializeRegisterDefaults() {
mme_inline[MAXWELL3D_REG_INDEX(index_array.count)] = true;
}
-void Maxwell3D::CallMacroMethod(u32 method, std::vector<u32>&& parameters) {
+void Maxwell3D::CallMacroMethod(u32 method, std::vector<u32>& parameters) {
// Reset the current macro.
executing_macro = 0;
@@ -124,7 +124,7 @@ void Maxwell3D::CallMacroMethod(u32 method, std::vector<u32>&& parameters) {
((method - MacroRegistersStart) >> 1) % static_cast<u32>(macro_positions.size());
// Execute the current macro.
- macro_engine->Execute(macro_positions[entry], std::move(parameters));
+ macro_engine->Execute(macro_positions[entry], parameters);
if (mme_draw.current_mode != MMEDrawMode::Undefined) {
FlushMMEInlineDraw();
}
@@ -160,7 +160,8 @@ void Maxwell3D::CallMethod(u32 method, u32 method_argument, bool is_last_call) {
// Call the macro when there are no more parameters in the command buffer
if (is_last_call) {
- CallMacroMethod(executing_macro, std::move(macro_params));
+ CallMacroMethod(executing_macro, macro_params);
+ macro_params.clear();
}
return;
}
@@ -304,7 +305,8 @@ void Maxwell3D::CallMultiMethod(u32 method, const u32* base_start, u32 amount,
// Call the macro when there are no more parameters in the command buffer
if (amount == methods_pending) {
- CallMacroMethod(executing_macro, std::move(macro_params));
+ CallMacroMethod(executing_macro, macro_params);
+ macro_params.clear();
}
return;
}