Cleanup: remove redundant assignment in previous bugfix

This commit is contained in:
Brecht Van Lommel 2020-10-23 16:32:10 +02:00
parent 8186b96753
commit 87681f9b5f
1 changed files with 2 additions and 3 deletions

View File

@ -394,10 +394,9 @@ StateManager::StateManager(void)
state.logic_op_xor = false;
state.invert_facing = false;
state.shadow_bias = false;
state.polygon_smooth = false;
state.clip_distances = 0;
state.polygon_smooth = 0;
state.line_smooth = 0;
state.polygon_smooth = false;
state.line_smooth = false;
mutable_state.depth_range[0] = 0.0f;
mutable_state.depth_range[1] = 1.0f;