summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2010-06-17 11:13:18 -0400
committerZack Rusin <[email protected]>2010-06-17 11:13:18 -0400
commit06b854752f8a550ddd299610e0e22c8f929109e2 (patch)
treef1f9f3f8cd825205b75b99b58fca21420efcb641
parenteb33dd69540d9d14acc42102f14dcc7d0075943f (diff)
draw: fix a silly error
-rw-r--r--src/gallium/auxiliary/draw/draw_gs_tmp.h2
1 files changed, 1 insertions, 1 deletions
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;