diff options
author | Brian Paul <[email protected]> | 2011-11-23 15:02:05 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-23 15:02:05 -0700 |
commit | 173427841ace7514fa6b24d24ea65f4d90549cb5 (patch) | |
tree | 4f01cbaea3d0f4986c150671ef7647137a5dfb16 /src/gallium | |
parent | f99d5af03b0f97d7a1b7076b2142069770879471 (diff) |
softpipe: remove pointless break stmt
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_quad_depth_test.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_quad_depth_test.c b/src/gallium/drivers/softpipe/sp_quad_depth_test.c index 29fb59955e4..fb163b20c71 100644 --- a/src/gallium/drivers/softpipe/sp_quad_depth_test.c +++ b/src/gallium/drivers/softpipe/sp_quad_depth_test.c @@ -678,7 +678,6 @@ alpha_test_quads(struct quad_stage *qs, return alpha_test_quads_LESS( qs, quads, nr ); case PIPE_FUNC_EQUAL: return alpha_test_quads_EQUAL( qs, quads, nr ); - break; case PIPE_FUNC_LEQUAL: return alpha_test_quads_LEQUAL( qs, quads, nr ); case PIPE_FUNC_GREATER: |