mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
cell: replace FREE() with align_free()
This commit is contained in:
parent
e42a394ed5
commit
6c017c2c3c
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ cell_texture_release(struct pipe_screen *screen,
|
|||
|
||||
for (i = 0; i < CELL_MAX_TEXTURE_LEVELS; i++) {
|
||||
if (ct->tiled_data[i]) {
|
||||
FREE(ct->tiled_data[i]);
|
||||
align_free(ct->tiled_data[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue