summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-07-09 15:45:57 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-09 15:45:57 -0600
commitae108bfaae54f0562ea80336753fa1c7a1040b20 (patch)
treeae76019a4636a14e2ff09024291751bdf6adb5c6
parent346688a23eb6118c2888b1c4f5e250768fd29161 (diff)
fix stage, stage->next mix-up
-rw-r--r--src/mesa/clip/clip_pipe_offset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/clip/clip_pipe_offset.c b/src/mesa/clip/clip_pipe_offset.c
index 68dbd15c48..35b4e5c079 100644
--- a/src/mesa/clip/clip_pipe_offset.c
+++ b/src/mesa/clip/clip_pipe_offset.c
@@ -123,7 +123,7 @@ static void offset_tri( struct clip_pipe_stage *stage,
tmp.v[1] = dup_vert(stage, header->v[1], 1);
tmp.v[2] = dup_vert(stage, header->v[2], 2);
- do_offset_tri( stage->next, &tmp );
+ do_offset_tri( stage, &tmp );
}