diff options
author | Brian Paul <[email protected]> | 2008-08-20 10:27:30 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-20 10:32:26 -0600 |
commit | f6abdb20437b1b8d27d8c45c0787017dfcad3497 (patch) | |
tree | 298500dc074b8a732591e39eb3de1e9a1b6b6521 | |
parent | 34cffce33413fe7701975d0d4bd54207bc44cacc (diff) |
gallium: fix typo in LINE() macro (replace i+1 with i1 var)
We were sometimes referencing an invalid vertex.
Fixes progs/trivial/line-clip.c test among others.
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe.c b/src/gallium/auxiliary/draw/draw_pipe.c index 3355c871ee3..1db43876efb 100644 --- a/src/gallium/auxiliary/draw/draw_pipe.c +++ b/src/gallium/auxiliary/draw/draw_pipe.c @@ -238,7 +238,7 @@ void draw_pipeline_run( struct draw_context *draw, do_line( draw, \ flags, \ verts + stride * ((i0) & ~DRAW_PIPE_FLAG_MASK), \ - verts + stride * (i+1)) + verts + stride * (i1)) #define POINT(i0) \ do_point( draw, \ |