diff options
author | Brian Paul <[email protected]> | 2012-09-05 20:26:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-09-05 21:20:03 -0600 |
commit | 9f2a7a38e8aeb2842be81ff82f61a49363e30a95 (patch) | |
tree | 15f7ad258f8788af0ad541ef0065bd5381448055 /src/mesa/math/m_xform.h | |
parent | d220e2de7fe7a75e70d68f2a4169103020fa7ca6 (diff) |
mesa: s/CONST/const/ in math/ files
The CONST macro hack will go away soon.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/math/m_xform.h')
-rw-r--r-- | src/mesa/math/m_xform.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/math/m_xform.h b/src/mesa/math/m_xform.h index 14ac956a7bc..28024888392 100644 --- a/src/mesa/math/m_xform.h +++ b/src/mesa/math/m_xform.h @@ -108,21 +108,21 @@ typedef GLvector4f * (_XFORMAPIP clip_func)( GLvector4f *vClip, typedef void (*dotprod_func)( GLfloat *out, GLuint out_stride, - CONST GLvector4f *coord_vec, - CONST GLfloat plane[4] ); + const GLvector4f *coord_vec, + const GLfloat plane[4] ); typedef void (*vec_copy_func)( GLvector4f *to, - CONST GLvector4f *from ); + const GLvector4f *from ); /* * Functions for transformation of normals in the VB. */ -typedef void (_NORMAPIP normal_func)( CONST GLmatrix *mat, +typedef void (_NORMAPIP normal_func)( const GLmatrix *mat, GLfloat scale, - CONST GLvector4f *in, - CONST GLfloat lengths[], + const GLvector4f *in, + const GLfloat lengths[], GLvector4f *dest ); @@ -142,8 +142,8 @@ typedef void (_NORMAPIP normal_func)( CONST GLmatrix *mat, * parameter, to allow a unified interface. */ typedef void (_XFORMAPIP transform_func)( GLvector4f *to_vec, - CONST GLfloat m[16], - CONST GLvector4f *from_vec ); + const GLfloat m[16], + const GLvector4f *from_vec ); extern dotprod_func _mesa_dotprod_tab[5]; |