cell: replace FREE() with align_free()
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 14 Oct 2008 23:22:06 +0000 (17:22 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 14 Oct 2008 23:22:06 +0000 (17:22 -0600)
src/gallium/drivers/cell/ppu/cell_texture.c

index 4c92ef1..230e192 100644 (file)
@@ -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]);
          }
       }