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 "glheader.h"
32
33struct gl_context;
34
35extern void GLAPIENTRY
36_mesa_Frustum( GLdouble left, GLdouble right,
37               GLdouble bottom, GLdouble top,
38               GLdouble nearval, GLdouble farval );
39
40extern void GLAPIENTRY
41_mesa_Ortho( GLdouble left, GLdouble right,
42             GLdouble bottom, GLdouble top,
43             GLdouble nearval, GLdouble farval );
44
45extern void GLAPIENTRY
46_mesa_PushMatrix( void );
47
48extern void GLAPIENTRY
49_mesa_PopMatrix( void );
50
51extern void GLAPIENTRY
52_mesa_LoadIdentity( void );
53
54extern void GLAPIENTRY
55_mesa_LoadMatrixf( const GLfloat *m );
56
57extern void GLAPIENTRY
58_mesa_LoadMatrixd( const GLdouble *m );
59
60extern void GLAPIENTRY
61_mesa_MatrixMode( GLenum mode );
62
63extern void GLAPIENTRY
64_mesa_MultMatrixf( const GLfloat *m );
65
66extern void GLAPIENTRY
67_mesa_MultMatrixd( const GLdouble *m );
68
69extern void GLAPIENTRY
70_mesa_Rotatef( GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
71
72extern void GLAPIENTRY
73_mesa_Rotated( GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
74
75extern void GLAPIENTRY
76_mesa_Scalef( GLfloat x, GLfloat y, GLfloat z );
77
78extern void GLAPIENTRY
79_mesa_Scaled( GLdouble x, GLdouble y, GLdouble z );
80
81extern void GLAPIENTRY
82_mesa_Translatef( GLfloat x, GLfloat y, GLfloat z );
83
84extern void GLAPIENTRY
85_mesa_Translated( GLdouble x, GLdouble y, GLdouble z );
86
87extern void GLAPIENTRY
88_mesa_LoadTransposeMatrixfARB( const GLfloat *m );
89
90extern void GLAPIENTRY
91_mesa_LoadTransposeMatrixdARB( const GLdouble *m );
92
93extern void GLAPIENTRY
94_mesa_MultTransposeMatrixfARB( const GLfloat *m );
95
96extern void GLAPIENTRY
97_mesa_MultTransposeMatrixdARB( const GLdouble *m );
98
99
100extern void
101_mesa_init_matrix( struct gl_context * ctx );
102
103extern void
104_mesa_init_transform( struct gl_context *ctx );
105
106extern void
107_mesa_free_matrix_data( struct gl_context *ctx );
108
109extern void
110_mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
111
112
113#endif
114