summaryrefslogtreecommitdiff
path: root/mesa/math
diff options
context:
space:
mode:
authorLuc Verhaegen <libv@skynet.be>2010-03-13 04:47:47 +0100
committerLuc Verhaegen <libv@skynet.be>2010-03-13 04:47:47 +0100
commit31cf9104d4a679eb625d5abf9e365b90b9f5efbf (patch)
treebc14486b3673faa685bb347c1cd9191f7488dfae /mesa/math
parent87a6ef144f9b38898ec236450a92421f4891ad22 (diff)
DRI SDK headers from mesa 7.5.0.
Diffstat (limited to 'mesa/math')
-rw-r--r--mesa/math/m_matrix.h3
-rw-r--r--mesa/math/m_xform.h19
2 files changed, 3 insertions, 19 deletions
diff --git a/mesa/math/m_matrix.h b/mesa/math/m_matrix.h
index a8d9000..3bc5de6 100644
--- a/mesa/math/m_matrix.h
+++ b/mesa/math/m_matrix.h
@@ -200,6 +200,9 @@ do { \
} while (0)
+extern void
+_mesa_transform_vector(GLfloat u[4], const GLfloat v[4], const GLfloat m[16]);
+
/*@}*/
diff --git a/mesa/math/m_xform.h b/mesa/math/m_xform.h
index 24e8ddb..7ef76e0 100644
--- a/mesa/math/m_xform.h
+++ b/mesa/math/m_xform.h
@@ -42,10 +42,6 @@
extern void
-_mesa_transform_vector(GLfloat u[4], CONST GLfloat v[4], CONST GLfloat m[16]);
-
-
-extern void
_math_init_transformation(void);
@@ -148,18 +144,6 @@ typedef void (_XFORMAPIP transform_func)( GLvector4f *to_vec,
CONST GLvector4f *from_vec );
-extern GLvector4f *_mesa_project_points( GLvector4f *to,
- CONST GLvector4f *from );
-
-extern void _mesa_transform_bounds3( GLubyte *orMask, GLubyte *andMask,
- CONST GLfloat m[16],
- CONST GLfloat src[][3] );
-
-extern void _mesa_transform_bounds2( GLubyte *orMask, GLubyte *andMask,
- CONST GLfloat m[16],
- CONST GLfloat src[][3] );
-
-
extern dotprod_func _mesa_dotprod_tab[5];
extern vec_copy_func _mesa_copy_tab[0x10];
extern vec_copy_func _mesa_copy_clean_tab[5];
@@ -173,9 +157,6 @@ extern normal_func _mesa_normal_tab[0xf];
extern transform_func *_mesa_transform_tab[5];
-extern void _mesa_transform_point_sz( GLfloat Q[4], CONST GLfloat M[16],
- CONST GLfloat P[4], GLuint sz );
-
#define TransformRaw( to, mat, from ) \
( _mesa_transform_tab[(from)->size][(mat)->type]( to, (mat)->m, from ), \