glthread: rename marshal.h/c to glthread_marshal.h and glthread_shaderobj.c
[mesa.git] / src / mesa / main / matrix.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #ifndef MATRIX_H
28 #define MATRIX_H
29
30
31 #include "glheader.h"
32
33 struct gl_context;
34
35 extern void GLAPIENTRY
36 _mesa_Frustum( GLdouble left, GLdouble right,
37 GLdouble bottom, GLdouble top,
38 GLdouble nearval, GLdouble farval );
39
40 extern void GLAPIENTRY
41 _mesa_Ortho( GLdouble left, GLdouble right,
42 GLdouble bottom, GLdouble top,
43 GLdouble nearval, GLdouble farval );
44
45 extern void GLAPIENTRY
46 _mesa_PushMatrix( void );
47
48 extern void GLAPIENTRY
49 _mesa_PopMatrix( void );
50
51 extern void GLAPIENTRY
52 _mesa_LoadIdentity( void );
53
54 extern void GLAPIENTRY
55 _mesa_LoadMatrixf( const GLfloat *m );
56
57 extern void GLAPIENTRY
58 _mesa_LoadMatrixd( const GLdouble *m );
59
60 extern void GLAPIENTRY
61 _mesa_MatrixMode( GLenum mode );
62
63 extern void GLAPIENTRY
64 _mesa_MultMatrixf( const GLfloat *m );
65
66 extern void GLAPIENTRY
67 _mesa_MultMatrixd( const GLdouble *m );
68
69 extern void GLAPIENTRY
70 _mesa_Rotatef( GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
71
72 extern void GLAPIENTRY
73 _mesa_Rotated( GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
74
75 extern void GLAPIENTRY
76 _mesa_Scalef( GLfloat x, GLfloat y, GLfloat z );
77
78 extern void GLAPIENTRY
79 _mesa_Scaled( GLdouble x, GLdouble y, GLdouble z );
80
81 extern void GLAPIENTRY
82 _mesa_Translatef( GLfloat x, GLfloat y, GLfloat z );
83
84 extern void GLAPIENTRY
85 _mesa_Translated( GLdouble x, GLdouble y, GLdouble z );
86
87 extern void GLAPIENTRY
88 _mesa_LoadTransposeMatrixf( const GLfloat *m );
89
90 extern void GLAPIENTRY
91 _mesa_LoadTransposeMatrixd( const GLdouble *m );
92
93 extern void GLAPIENTRY
94 _mesa_MultTransposeMatrixf( const GLfloat *m );
95
96 extern void GLAPIENTRY
97 _mesa_MultTransposeMatrixd( const GLdouble *m );
98
99 extern void GLAPIENTRY
100 _mesa_MatrixLoadfEXT( GLenum matrixMode, const GLfloat *m );
101
102 extern void GLAPIENTRY
103 _mesa_MatrixLoaddEXT( GLenum matrixMode, const GLdouble *m );
104
105 extern void GLAPIENTRY
106 _mesa_MatrixMultfEXT( GLenum matrixMode, const GLfloat *m );
107
108 extern void GLAPIENTRY
109 _mesa_MatrixMultdEXT( GLenum matrixMode, const GLdouble *m );
110
111 extern void GLAPIENTRY
112 _mesa_MatrixLoadIdentityEXT( GLenum matrixMode );
113
114 extern void GLAPIENTRY
115 _mesa_MatrixRotatefEXT( GLenum matrixMode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
116
117 extern void GLAPIENTRY
118 _mesa_MatrixRotatedEXT( GLenum matrixMode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
119
120 extern void GLAPIENTRY
121 _mesa_MatrixScalefEXT( GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z );
122
123 extern void GLAPIENTRY
124 _mesa_MatrixScaledEXT( GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z );
125
126 extern void GLAPIENTRY
127 _mesa_MatrixTranslatefEXT( GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z );
128
129 extern void GLAPIENTRY
130 _mesa_MatrixTranslatedEXT( GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z );
131
132 extern void GLAPIENTRY
133 _mesa_MatrixOrthoEXT( GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t,
134 GLdouble n, GLdouble f );
135
136 extern void GLAPIENTRY
137 _mesa_MatrixFrustumEXT( GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t,
138 GLdouble n, GLdouble f );
139
140 extern void GLAPIENTRY
141 _mesa_MatrixPushEXT( GLenum matrixMode );
142
143 extern void GLAPIENTRY
144 _mesa_MatrixPopEXT( GLenum matrixMode );
145
146 extern void GLAPIENTRY
147 _mesa_MatrixLoadTransposefEXT( GLenum matrixMode, const GLfloat* m );
148
149 extern void GLAPIENTRY
150 _mesa_MatrixLoadTransposedEXT( GLenum matrixMode, const GLdouble* m );
151
152 extern void GLAPIENTRY
153 _mesa_MatrixMultTransposefEXT( GLenum matrixMode, const GLfloat* m );
154
155 extern void GLAPIENTRY
156 _mesa_MatrixMultTransposedEXT( GLenum matrixMode, const GLdouble* m );
157
158 extern void
159 _mesa_init_matrix( struct gl_context * ctx );
160
161 extern void
162 _mesa_init_transform( struct gl_context *ctx );
163
164 extern void
165 _mesa_free_matrix_data( struct gl_context *ctx );
166
167 extern void
168 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
169
170
171 #endif