mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 01:40:08 +01:00
gallium: Use align_free to free aligned memory.
This commit is contained in:
parent
5db1593c78
commit
45b18c51c0
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