summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-09-10 17:55:45 +0200
committerGitHub <noreply@github.com>2019-09-10 17:55:45 +0200
commitc7ec7bc1f5183f580bf34f9e2dfb59c986551f36 (patch)
treea141f778eb57f4583acd24cdcd8027bf2f7099ac /src/video_core/engines/maxwell_3d.h
parentMerge pull request #2759 from ReinUsesLisp/compute-images (diff)
parentmaxwell_3d: Avoid moving macro_params (diff)
downloadyuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar.gz
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar.bz2
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar.lz
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar.xz
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.tar.zst
yuzu-c7ec7bc1f5183f580bf34f9e2dfb59c986551f36.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 3b3c82f41..f67a5389f 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1308,9 +1308,10 @@ private:
/**
* Call a macro on this engine.
* @param method Method to call
+ * @param num_parameters Number of arguments
* @param parameters Arguments to the method call
*/
- void CallMacroMethod(u32 method, std::vector<u32> parameters);
+ void CallMacroMethod(u32 method, std::size_t num_parameters, const u32* parameters);
/// Handles writes to the macro uploading register.
void ProcessMacroUpload(u32 data);