summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 149f79af3..1b0cc56f1 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -84,6 +84,10 @@ public:
84 return guest_driver_profile; 84 return guest_driver_profile;
85 } 85 }
86 86
87 const GuestDriverProfile& AccessGuestDriverProfile() const {
88 return guest_driver_profile;
89 }
90
87private: 91private:
88 GuestDriverProfile guest_driver_profile{}; 92 GuestDriverProfile guest_driver_profile{};
89}; 93};