Browse Source

fix incorrect vertex index for POLYGON drawing

tags/mesa_20090313
Brian 18 years ago
parent
commit
eef2e35981
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mesa/pipe/draw/draw_prim.c

+ 1
- 1
src/mesa/pipe/draw/draw_prim.c View File

@@ -669,7 +669,7 @@ draw_prim( struct draw_context *draw, unsigned start, unsigned count )
ef_mask,
start + i + 1,
start + i + 2,
start + i + 0);
start + 0);

ef_mask &= ~(1<<2);
}

Loading…
Cancel
Save