mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
gallium: Use align_free to free aligned memory.
This commit is contained in:
parent
535abe4037
commit
7a1b2f4078
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ void draw_destroy( struct draw_context *draw )
|
|||
if (draw->pipeline.rasterize)
|
||||
draw->pipeline.rasterize->destroy( draw->pipeline.rasterize );
|
||||
tgsi_exec_machine_free_data(&draw->machine);
|
||||
FREE( draw->vcache.vertex[0] ); /* Frees all the vertices. */
|
||||
align_free( draw->vcache.vertex[0] ); /* Frees all the vertices. */
|
||||
FREE( draw );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue