mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 10:30:08 +01:00
gallium: minor function renaming
This commit is contained in:
parent
4c1403f667
commit
d2b14311d9
1 changed files with 2 additions and 2 deletions
|
|
@ -400,7 +400,7 @@ static void wide_flush( struct draw_stage *stage, unsigned flags )
|
|||
}
|
||||
|
||||
|
||||
static void draw_reset_stipple_counter( struct draw_stage *stage )
|
||||
static void wide_reset_stipple_counter( struct draw_stage *stage )
|
||||
{
|
||||
stage->next->reset_stipple_counter( stage->next );
|
||||
}
|
||||
|
|
@ -425,7 +425,7 @@ struct draw_stage *draw_wide_stage( struct draw_context *draw )
|
|||
wide->stage.line = wide_first_line;
|
||||
wide->stage.tri = passthrough_tri;
|
||||
wide->stage.flush = wide_flush;
|
||||
wide->stage.reset_stipple_counter = draw_reset_stipple_counter;
|
||||
wide->stage.reset_stipple_counter = wide_reset_stipple_counter;
|
||||
wide->stage.destroy = wide_destroy;
|
||||
|
||||
return &wide->stage;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue