summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2020-06-05 05:09:52 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2020-06-24 04:09:03 +0200
commitfabdf5d3850c078d173653f259845c26a2ce6e7d (patch)
tree151a9eeefd518722f45cbe6446f1928ebf26bddb /src/video_core/engines
parentFix constbuffer for 0217920100488FF7 (diff)
downloadyuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar.gz
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar.bz2
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar.lz
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar.xz
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.tar.zst
yuzu-fabdf5d3850c078d173653f259845c26a2ce6e7d.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 5926c4d2d..ef1618990 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1422,6 +1422,10 @@ public:
return rasterizer;
}
+ const VideoCore::RasterizerInterface& GetRasterizer() const {
+ return rasterizer;
+ }
+
/// Notify a memory write has happened.
void OnMemoryWrite() {
dirty.flags |= dirty.on_write_stores;