diff options
author | Zack Rusin <zackr@vmware.com> | 2010-06-17 11:13:18 -0400 |
---|---|---|
committer | Zack Rusin <zackr@vmware.com> | 2010-06-17 11:13:18 -0400 |
commit | 06b854752f8a550ddd299610e0e22c8f929109e2 (patch) | |
tree | f1f9f3f8cd825205b75b99b58fca21420efcb641 /src/gallium | |
parent | eb33dd69540d9d14acc42102f14dcc7d0075943f (diff) |
draw: fix a silly error
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_gs_tmp.h | 2 |
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 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; |