summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-13 22:52:32 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-17 23:29:51 +0200
commita081dea8abd9539ab45e53fbfb0e9c6243b87180 (patch)
treedab378fcaab484aff60eb9d6c7cf74127cd341d4 /src/video_core/engines/maxwell_3d.h
parentMaxwell3D: Rework CBData Upload (diff)
downloadyuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar.gz
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar.bz2
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar.lz
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar.xz
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.tar.zst
yuzu-a081dea8abd9539ab45e53fbfb0e9c6243b87180.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 318078f36..abc69cc65 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1148,22 +1148,20 @@ public:
bool shaders;
// State
bool viewport;
- bool clip_enabled;
bool clip_coefficient;
bool cull_mode;
bool primitive_restart;
bool depth_test;
bool stencil_test;
bool blend_state;
- bool logic_op;
- bool fragment_color_clamp;
- bool multi_sample;
bool scissor_test;
bool transform_feedback;
- bool point;
bool color_mask;
bool polygon_offset;
- bool alpha_test;
+
+ // Complementary
+ bool viewport_transform;
+ bool screen_y_control;
bool memory_general;
};