summaryrefslogtreecommitdiffstats
path: root/src/video_core/macro
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/macro
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/macro')
-rw-r--r--src/video_core/macro/macro.cpp2
-rw-r--r--src/video_core/macro/macro.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/macro/macro.cpp b/src/video_core/macro/macro.cpp
index 85a6e5dd4..d05a88479 100644
--- a/src/video_core/macro/macro.cpp
+++ b/src/video_core/macro/macro.cpp
@@ -15,7 +15,7 @@ void MacroEngine::AddCode(u32 method, u32 data) {
uploaded_macro_code[method].push_back(data);
}
-void MacroEngine::Execute(u32 method, std::vector<u32> parameters) {
+void MacroEngine::Execute(u32 method, std::vector<u32>& parameters) {
auto compiled_macro = macro_cache.find(method);
if (compiled_macro != macro_cache.end()) {
compiled_macro->second->Execute(parameters, method);
diff --git a/src/video_core/macro/macro.h b/src/video_core/macro/macro.h
index 28ca243d1..49fc4d6bc 100644
--- a/src/video_core/macro/macro.h
+++ b/src/video_core/macro/macro.h
@@ -113,7 +113,7 @@ public:
void AddCode(u32 method, u32 data);
// Compiles the macro if its not in the cache, and executes the compiled macro
- void Execute(u32 method, std::vector<u32> parameters);
+ void Execute(u32 method, std::vector<u32>& parameters);
protected:
virtual std::unique_ptr<CachedMacro> Compile(const std::vector<u32>& code) = 0;