summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorMarkus Wick <markus@selfnet.de>2018-11-06 19:15:44 +0100
committerMarkus Wick <markus@selfnet.de>2018-11-06 22:31:33 +0100
commit359db6a673b1fa13c80e6b8bf54d5c29bc3b25db (patch)
treeade5874bcf54c42c7afaf8ab47d5cbd33e8a440a /src/video_core/engines/maxwell_3d.h
parentgl_rasterizer: Split VAO and VB setup functions. (diff)
downloadyuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar.gz
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar.bz2
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar.lz
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar.xz
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.tar.zst
yuzu-359db6a673b1fa13c80e6b8bf54d5c29bc3b25db.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 50873813e..f2052b4c7 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -983,6 +983,12 @@ public:
State state{};
MemoryManager& memory_manager;
+ struct DirtyFlags {
+ bool vertex_attrib_format = true;
+ };
+
+ DirtyFlags dirty_flags;
+
/// Reads a register value located at the input method address
u32 GetRegisterValue(u32 method) const;