diff options
author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2021-07-10 22:06:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 22:06:19 +0200 |
commit | 907b2324d3a570ff726fe064ba425924d6dc0426 (patch) | |
tree | 1b3a16691ab5835900a5eee0a05a871b6b774a71 /src/video_core/rasterizer_interface.h | |
parent | Merge pull request #6573 from lat9nq/cpu-settings-cleanup-2 (diff) | |
parent | Buffer Cache: Address Feedback. (diff) | |
download | yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar.gz yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar.bz2 yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar.lz yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar.xz yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.tar.zst yuzu-907b2324d3a570ff726fe064ba425924d6dc0426.zip |
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r-- | src/video_core/rasterizer_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 0cec4225b..67aef6000 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -63,6 +63,9 @@ public: /// Signal a GPU based syncpoint as a fence virtual void SignalSyncPoint(u32 value) = 0; + /// Signal a GPU based reference as point + virtual void SignalReference() = 0; + /// Release all pending fences. virtual void ReleaseFences() = 0; |