diff options
| author | 2020-03-09 18:34:37 -0300 | |
|---|---|---|
| committer | 2020-03-09 18:34:37 -0300 | |
| commit | 22e825a3bc0d9bfb5f8c29a50724c2887014dc02 (patch) | |
| tree | d68f0ace93ba44292e3017dcb219f3132b3314ef /src/video_core/rasterizer_interface.h | |
| parent | Merge pull request #3486 from ReinUsesLisp/fix-anisotropy-hack (diff) | |
| parent | video_core/dirty_flags: Address feedback (diff) | |
| download | yuzu-22e825a3bc0d9bfb5f8c29a50724c2887014dc02.tar.gz yuzu-22e825a3bc0d9bfb5f8c29a50724c2887014dc02.tar.xz yuzu-22e825a3bc0d9bfb5f8c29a50724c2887014dc02.zip | |
Merge pull request #3301 from ReinUsesLisp/state-tracker
video_core: Remove gl_state and use a state tracker based on dirty flags
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 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; |