summaryrefslogtreecommitdiffstats
path: root/src/mesa/math/m_debug_norm.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2010-02-19 13:16:57 -0500
committerKristian Høgsberg <krh@bitplanet.net>2010-02-19 13:30:22 -0500
commit99ae9e8d7d57ae37629754edd5b1e3716611827f (patch)
tree1503daf41e7a1f1050401cec46dbffd10e697cf2 /src/mesa/math/m_debug_norm.c
parent3ef51b4bd98648f3141b3c6978db312f2f6c782e (diff)
downloadexternal_mesa3d-99ae9e8d7d57ae37629754edd5b1e3716611827f.zip
external_mesa3d-99ae9e8d7d57ae37629754edd5b1e3716611827f.tar.gz
external_mesa3d-99ae9e8d7d57ae37629754edd5b1e3716611827f.tar.bz2
Drop macro wrappers for the aligned memory functions
Diffstat (limited to 'src/mesa/math/m_debug_norm.c')
-rw-r--r--src/mesa/math/m_debug_norm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c
index 546e864..710bad1 100644
--- a/src/mesa/math/m_debug_norm.c
+++ b/src/mesa/math/m_debug_norm.c
@@ -208,7 +208,7 @@ static int test_norm_function( normal_func func, int mtype, long *cycles )
(void) cycles;
- mat->m = (GLfloat *) ALIGN_MALLOC( 16 * sizeof(GLfloat), 16 );
+ mat->m = (GLfloat *) _mesa_align_malloc( 16 * sizeof(GLfloat), 16 );
mat->inv = m = mat->m;
init_matrix( m );
@@ -327,7 +327,7 @@ static int test_norm_function( normal_func func, int mtype, long *cycles )
}
}
- ALIGN_FREE( mat->m );
+ _mesa_align_free( mat->m );
return 1;
}