From f1d3f42c47ee0d3c5f13f5b30e6b113d6b542f64 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Tue, 20 Apr 2010 10:19:42 +0200 Subject: draw: Fix typo resulting from bad regular expression in index bias addition. --- src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gallium/auxiliary') diff --git a/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h b/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h index eedd31b7f8..f7a63de3ba 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); } } -- cgit v1.2.3