summaryrefslogtreecommitdiff
path: root/src/video_core/macro/macro.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/macro/macro.h')
-rw-r--r--src/video_core/macro/macro.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/macro/macro.h b/src/video_core/macro/macro.h
index 7e12c16dc..07d97ba39 100644
--- a/src/video_core/macro/macro.h
+++ b/src/video_core/macro/macro.h
@@ -117,6 +117,9 @@ public:
117 // Store the uploaded macro code to compile them when they're called. 117 // Store the uploaded macro code to compile them when they're called.
118 void AddCode(u32 method, u32 data); 118 void AddCode(u32 method, u32 data);
119 119
120 // Clear the code associated with a method.
121 void ClearCode(u32 method);
122
120 // Compiles the macro if its not in the cache, and executes the compiled macro 123 // Compiles the macro if its not in the cache, and executes the compiled macro
121 void Execute(u32 method, const std::vector<u32>& parameters); 124 void Execute(u32 method, const std::vector<u32>& parameters);
122 125