diff options
-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 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; |