summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-08-25 06:08:35 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-09-04 06:55:01 +0200
commit701dedcfad3001c1aecb2d714da1e22cc407a5ea (patch)
tree990c44e2e99ad830e5b028f3dae0d08961623e2a /src/video_core/engines/maxwell_3d.h
parentMerge pull request #2835 from chris062689/master (diff)
downloadyuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar.gz
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar.bz2
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar.lz
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar.xz
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.tar.zst
yuzu-701dedcfad3001c1aecb2d714da1e22cc407a5ea.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 0184342a0..9e7b50327 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1307,9 +1307,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);