diff options
author | Brian <[email protected]> | 2008-02-13 10:25:38 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-14 18:59:24 -0700 |
commit | b08102a8f3ef558743f5f952c726ba2c28b6e82e (patch) | |
tree | fdc49f662b702f826a85095cfd8d319de4fd02ab /src/mesa/pipe/draw/draw_stipple.c | |
parent | e9c6c31651a0c1884633168adfd3ea6797fbdc60 (diff) |
gallium: rename draw_free_tmps->draw_free_temp_verts, draw_alloc_tmps->draw_alloc_temp_verts
Diffstat (limited to 'src/mesa/pipe/draw/draw_stipple.c')
-rw-r--r-- | src/mesa/pipe/draw/draw_stipple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_stipple.c b/src/mesa/pipe/draw/draw_stipple.c index 90291019165..fb8b56e84cc 100644 --- a/src/mesa/pipe/draw/draw_stipple.c +++ b/src/mesa/pipe/draw/draw_stipple.c @@ -223,7 +223,7 @@ struct draw_stage *draw_stipple_stage( struct draw_context *draw ) { struct stipple_stage *stipple = CALLOC_STRUCT(stipple_stage); - draw_alloc_tmps( &stipple->stage, 2 ); + draw_alloc_temp_verts( &stipple->stage, 2 ); stipple->stage.draw = draw; stipple->stage.next = NULL; |