From 06b854752f8a550ddd299610e0e22c8f929109e2 Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Thu, 17 Jun 2010 11:13:18 -0400 Subject: draw: fix a silly error --- src/gallium/auxiliary/draw/draw_gs_tmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gallium/auxiliary/draw') diff --git a/src/gallium/auxiliary/draw/draw_gs_tmp.h b/src/gallium/auxiliary/draw/draw_gs_tmp.h index 4687e8823c..e906f08aeb 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; -- cgit v1.2.3