From: José Fonseca Date: Tue, 20 Apr 2010 08:19:42 +0000 (+0200) Subject: draw: Fix typo resulting from bad regular expression in index bias addition. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1d3f42c47ee0d3c5f13f5b30e6b113d6b542f64;p=mesa.git draw: Fix typo resulting from bad regular expression in index bias addition. --- diff --git a/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h b/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h index eedd31b7f85..f7a63de3ba9 100644 --- a/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h +++ b/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h @@ -78,16 +78,16 @@ static void FUNC( struct draw_pt_front_end *frontend, TRIANGLE( vcache, DRAW_PIPE_RESET_STIPPLE | DRAW_PIPE_EDGE_FLAG_ALL, get_elt(elts, i + 0) + elt_bias, - get_elt(elts, i + 1 + (i&1) + elt_bias), - get_elt(elts, i + 2 - (i&1) + elt_bias)); + get_elt(elts, i + 1 + (i&1)) + elt_bias, + get_elt(elts, i + 2 - (i&1)) + elt_bias); } } else { for (i = 0; i+2 < count; i++) { TRIANGLE( vcache, DRAW_PIPE_RESET_STIPPLE | DRAW_PIPE_EDGE_FLAG_ALL, - get_elt(elts, i + 0 + (i&1) + elt_bias), - get_elt(elts, i + 1 - (i&1) + elt_bias), + get_elt(elts, i + 0 + (i&1)) + elt_bias, + get_elt(elts, i + 1 - (i&1)) + elt_bias, get_elt(elts, i + 2 ) + elt_bias); } }