summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-12-26 22:14:10 -0300
committerGravatar ReinUsesLisp2020-02-28 17:56:41 -0300
commiteed789d0d134fbeef1c16f9829b5c1b4b7dabb17 (patch)
tree4a7dba754df1a71c29de64cfaab34b56b0d72dff /src/video_core/rasterizer_interface.h
parentgl_state: Remove completely (diff)
downloadyuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.tar.gz
yuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.tar.xz
yuzu-eed789d0d134fbeef1c16f9829b5c1b4b7dabb17.zip
video_core: Reintroduce dirty flags infrastructure
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index f18eaf4bc..3e4514b94 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -89,6 +89,9 @@ public:
89 virtual void LoadDiskResources(const std::atomic_bool& stop_loading = false, 89 virtual void LoadDiskResources(const std::atomic_bool& stop_loading = false,
90 const DiskResourceLoadCallback& callback = {}) {} 90 const DiskResourceLoadCallback& callback = {}) {}
91 91
92 /// Initializes renderer dirty flags
93 virtual void SetupDirtyFlags() {}
94
92 /// Grant access to the Guest Driver Profile for recording/obtaining info on the guest driver. 95 /// Grant access to the Guest Driver Profile for recording/obtaining info on the guest driver.
93 GuestDriverProfile& AccessGuestDriverProfile() { 96 GuestDriverProfile& AccessGuestDriverProfile() {
94 return guest_driver_profile; 97 return guest_driver_profile;