From: Zack Rusin Date: Thu, 17 Jun 2010 15:13:18 +0000 (-0400) Subject: draw: fix a silly error X-Git-Tag: android-x86-2.2~3370 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=06b854752f8a550ddd299610e0e22c8f929109e2;p=android-x86%2Fexternal-mesa.git draw: fix a silly error --- diff --git a/src/gallium/auxiliary/draw/draw_gs_tmp.h b/src/gallium/auxiliary/draw/draw_gs_tmp.h index 4687e8823c7..e906f08aeb8 100644 --- a/src/gallium/auxiliary/draw/draw_gs_tmp.h +++ b/src/gallium/auxiliary/draw/draw_gs_tmp.h @@ -114,7 +114,7 @@ static void FUNC( struct draw_geometry_shader *shader, break; case PIPE_PRIM_LINE_STRIP_ADJACENCY: for (i = 1; i + 2 < count; i++) { - LINE( shader, i - 1, i, i + 1, i + 2 ); + LINE_ADJ( shader, i - 1, i, i + 1, i + 2 ); } break;