diff options
author | Kristian Høgsberg <[email protected]> | 2010-02-19 13:16:57 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-19 13:30:22 -0500 |
commit | 99ae9e8d7d57ae37629754edd5b1e3716611827f (patch) | |
tree | 1503daf41e7a1f1050401cec46dbffd10e697cf2 /src/mesa/tnl/t_vb_program.c | |
parent | 3ef51b4bd98648f3141b3c6978db312f2f6c782e (diff) |
Drop macro wrappers for the aligned memory functions
Diffstat (limited to 'src/mesa/tnl/t_vb_program.c')
-rw-r--r-- | src/mesa/tnl/t_vb_program.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vb_program.c b/src/mesa/tnl/t_vb_program.c index 5351b5fe41f..0137e52fc40 100644 --- a/src/mesa/tnl/t_vb_program.c +++ b/src/mesa/tnl/t_vb_program.c @@ -514,7 +514,7 @@ init_vp(GLcontext *ctx, struct tnl_pipeline_stage *stage) /* a few other misc allocations */ _mesa_vector4f_alloc( &store->ndcCoords, 0, size, 32 ); - store->clipmask = (GLubyte *) ALIGN_MALLOC(sizeof(GLubyte)*size, 32 ); + store->clipmask = (GLubyte *) _mesa_align_malloc(sizeof(GLubyte)*size, 32 ); return GL_TRUE; } @@ -537,7 +537,7 @@ dtr(struct tnl_pipeline_stage *stage) /* free misc arrays */ _mesa_vector4f_free( &store->ndcCoords ); - ALIGN_FREE( store->clipmask ); + _mesa_align_free( store->clipmask ); FREE( store ); stage->privatePtr = NULL; |