Drop GLcontext typedef and use struct gl_context instead
[mesa.git] / src / mesa / main / matrix.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.5
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 #ifndef MATRIX_H
28 #define MATRIX_H
29
30
31 #include "mtypes.h"
32
33
34 extern void GLAPIENTRY
35 _mesa_Frustum( GLdouble left, GLdouble right,
36 GLdouble bottom, GLdouble top,
37 GLdouble nearval, GLdouble farval );
38
39 extern void GLAPIENTRY
40 _mesa_Ortho( GLdouble left, GLdouble right,
41 GLdouble bottom, GLdouble top,
42 GLdouble nearval, GLdouble farval );
43
44 extern void GLAPIENTRY
45 _mesa_PushMatrix( void );
46
47 extern void GLAPIENTRY
48 _mesa_PopMatrix( void );
49
50 extern void GLAPIENTRY
51 _mesa_LoadIdentity( void );
52
53 extern void GLAPIENTRY
54 _mesa_LoadMatrixf( const GLfloat *m );
55
56 extern void GLAPIENTRY
57 _mesa_LoadMatrixd( const GLdouble *m );
58
59 extern void GLAPIENTRY
60 _mesa_MatrixMode( GLenum mode );
61
62 extern void GLAPIENTRY
63 _mesa_MultMatrixf( const GLfloat *m );
64
65 extern void GLAPIENTRY
66 _mesa_MultMatrixd( const GLdouble *m );
67
68 extern void GLAPIENTRY
69 _mesa_Rotatef( GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
70
71 extern void GLAPIENTRY
72 _mesa_Rotated( GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
73
74 extern void GLAPIENTRY
75 _mesa_Scalef( GLfloat x, GLfloat y, GLfloat z );
76
77 extern void GLAPIENTRY
78 _mesa_Scaled( GLdouble x, GLdouble y, GLdouble z );
79
80 extern void GLAPIENTRY
81 _mesa_Translatef( GLfloat x, GLfloat y, GLfloat z );
82
83 extern void GLAPIENTRY
84 _mesa_Translated( GLdouble x, GLdouble y, GLdouble z );
85
86 extern void GLAPIENTRY
87 _mesa_LoadTransposeMatrixfARB( const GLfloat *m );
88
89 extern void GLAPIENTRY
90 _mesa_LoadTransposeMatrixdARB( const GLdouble *m );
91
92 extern void GLAPIENTRY
93 _mesa_MultTransposeMatrixfARB( const GLfloat *m );
94
95 extern void GLAPIENTRY
96 _mesa_MultTransposeMatrixdARB( const GLdouble *m );
97
98
99 extern void
100 _mesa_init_matrix( struct gl_context * ctx );
101
102 extern void
103 _mesa_init_transform( struct gl_context *ctx );
104
105 extern void
106 _mesa_free_matrix_data( struct gl_context *ctx );
107
108 extern void
109 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
110
111
112 #endif