From: Brian Date: Tue, 14 Aug 2007 23:20:40 +0000 (-0600) Subject: use regular malloc/free instead of macros X-Git-Tag: 062012170305~17580^2~390^2~4319 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=681b1ebd5e1a94961a1d38b3018af97a10d2d5b0;p=profile%2Fivi%2Fmesa.git use regular malloc/free instead of macros --- diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index 4335b47..0707c03 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -80,8 +80,8 @@ void draw_destroy( struct draw_context *draw ) vf_destroy( draw->vf ); - FREE( draw->vcache.vertex[0] ); /* Frees all the vertices. */ - FREE( draw ); + free( draw->vcache.vertex[0] ); /* Frees all the vertices. */ + free( draw ); } diff --git a/src/mesa/pipe/draw/draw_vb.c b/src/mesa/pipe/draw/draw_vb.c index ef32f02..c060031 100644 --- a/src/mesa/pipe/draw/draw_vb.c +++ b/src/mesa/pipe/draw/draw_vb.c @@ -795,7 +795,7 @@ void draw_alloc_tmps( struct draw_stage *stage, GLuint nr ) stage->nr_tmps = nr; if (nr) { - GLubyte *store = MALLOC(MAX_VERTEX_SIZE * nr); + GLubyte *store = (GLubyte *) malloc(MAX_VERTEX_SIZE * nr); GLuint i; stage->tmp = MALLOC(sizeof(struct vertex_header *) * nr); @@ -808,7 +808,7 @@ void draw_alloc_tmps( struct draw_stage *stage, GLuint nr ) void draw_free_tmps( struct draw_stage *stage ) { if (stage->tmp) { - FREE(stage->tmp[0]); - FREE(stage->tmp); + free(stage->tmp[0]); + free(stage->tmp); } }