llvmpipe: Always use memory allocation macros.
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 25 Sep 2011 10:48:00 +0000 (11:48 +0100)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Sun, 25 Sep 2011 11:18:55 +0000 (12:18 +0100)
src/gallium/drivers/llvmpipe/lp_tile_image.c

index 0938f7aea7e0d39c8f80affe03b965f0c12cb6ee..4d53cdeef458b76abee5a6002797127b84fbac6a 100644 (file)
@@ -33,6 +33,7 @@
 
 
 #include "util/u_format.h"
+#include "util/u_memory.h"
 #include "lp_tile_soa.h"
 #include "lp_tile_image.h"
 
@@ -313,7 +314,7 @@ test_tiled_linear_conversion(void *data,
    unsigned wt = (width + TILE_SIZE - 1) / TILE_SIZE;
    unsigned ht = (height + TILE_SIZE - 1) / TILE_SIZE;
 
-   uint8_t *tiled = malloc(wt * ht * TILE_SIZE * TILE_SIZE * 4);
+   uint8_t *tiled = MALLOC(wt * ht * TILE_SIZE * TILE_SIZE * 4);
 
    /*unsigned tiled_stride = wt * TILE_SIZE * TILE_SIZE * 4;*/
 
@@ -323,6 +324,6 @@ test_tiled_linear_conversion(void *data,
    lp_tiled_to_linear(tiled, data, 0, 0, width, height, format,
                       stride, wt);
 
-   free(tiled);
+   FREE(tiled);
 }