From: Brian Paul Date: Wed, 13 Jan 2010 23:48:57 +0000 (-0700) Subject: gallium/draw: remove always-true conditional X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ee343feba126c0915983699f729c77891082df6a;p=mesa.git gallium/draw: remove always-true conditional --- diff --git a/src/gallium/auxiliary/draw/draw_pipe_clip.c b/src/gallium/auxiliary/draw/draw_pipe_clip.c index 205cda5eabe..e51a9da7655 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_clip.c +++ b/src/gallium/auxiliary/draw/draw_pipe_clip.c @@ -291,9 +291,7 @@ do_clip_tri( struct draw_stage *stage, /* If flat-shading, copy color to new provoking vertex. */ if (clipper->flat && inlist[0] != header->v[2]) { - if (1) { - inlist[0] = dup_vert(stage, inlist[0], tmpnr++); - } + inlist[0] = dup_vert(stage, inlist[0], tmpnr++); copy_colors(stage, inlist[0], header->v[2]); }