aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorFernando Sahmkow <[email protected]>2020-01-08 10:28:29 -0400
committerFernandoS27 <[email protected]>2020-01-24 16:43:30 -0400
commitb97608ca646962a6f5a217b9477bdd86eed5e48f (patch)
tree28f43af9ca1f3dc4b97542a6bdaab95af687e036 /src/video_core/rasterizer_interface.h
parentdc5cfa8d287757dede737553b6f1f8521971c6e2 (diff)
downloadyuzu-mainline-b97608ca646962a6f5a217b9477bdd86eed5e48f.tar.gz
yuzu-mainline-b97608ca646962a6f5a217b9477bdd86eed5e48f.zip
Shader_IR: Allow constant access of guest driver.
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:
return guest_driver_profile;
}
+ const GuestDriverProfile& AccessGuestDriverProfile() const {
+ return guest_driver_profile;
+ }
+
private:
GuestDriverProfile guest_driver_profile{};
};