summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-09-15 20:25:07 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-09-19 17:41:29 +0200
commit7606da5611b5626790e99b4387e033eaea20c2cb (patch)
tree1ce0273ad940c847b6fb4d1832de579f069d3615 /src/video_core/engines/maxwell_3d.h
parentVideo Core: initial Implementation of InstanceDraw Packaging (diff)
downloadyuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar.gz
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar.bz2
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar.lz
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar.xz
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.tar.zst
yuzu-7606da5611b5626790e99b4387e033eaea20c2cb.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 1547d930e..8fd3ec85c 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1277,8 +1277,11 @@ public:
struct MMEDrawState {
MMMEDrawMode current_mode{MMMEDrawMode::Undefined};
- u32 current_count;
- u32 instance_count;
+ u32 current_count{};
+ u32 instance_count{};
+ bool instance_mode{};
+ bool gl_begin_consume{};
+ u32 gl_end_count{};
} mme_draw;
private: