draw: fix a silly error

This commit is contained in:
Zack Rusin 2010-06-17 11:13:18 -04:00
parent eb33dd6954
commit 06b854752f
1 changed files with 1 additions and 1 deletions

View File

@ -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;