diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-11 17:49:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-11 17:49:25 -0400 |
| commit | c2b583c9113985f6e3d228f83f87ee483dc96297 (patch) | |
| tree | 11fe0c54547ee3e0401f3201de388dee72a41d00 /src/video_core/macro/macro.h | |
| parent | f345ffdc0f16b6e17be8f7bb2b070dfbf41a332f (diff) | |
| parent | e158951695f6ed5626adc0685431a78c5a13867a (diff) | |
Merge pull request #8328 from liamwhite/macro-clear
video_core/macro: clear code on upload address assignment
Diffstat (limited to 'src/video_core/macro/macro.h')
| -rw-r--r-- | src/video_core/macro/macro.h | 3 |
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: // Store the uploaded macro code to compile them when they're called. void AddCode(u32 method, u32 data); + // Clear the code associated with a method. + void ClearCode(u32 method); + // Compiles the macro if its not in the cache, and executes the compiled macro void Execute(u32 method, const std::vector<u32>& parameters); |
