blob: d772acc34cc3119cbf4b967894dc60d60c41265c [file] [log] [blame]
Brian Paul449e47f2003-02-17 16:35:56 +00001/* $Id: m_matrix.h,v 1.5 2003/02/17 16:36:06 brianp Exp $ */
Keith Whitwell23caf202000-11-16 21:05:34 +00002
3/*
4 * Mesa 3-D graphics library
5 * Version: 3.5
Gareth Hughes22144ab2001-03-12 00:48:37 +00006 *
Brian Pauld8bc5a92001-02-05 18:48:52 +00007 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
Gareth Hughes22144ab2001-03-12 00:48:37 +00008 *
Keith Whitwell23caf202000-11-16 21:05:34 +00009 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
Gareth Hughes22144ab2001-03-12 00:48:37 +000015 *
Keith Whitwell23caf202000-11-16 21:05:34 +000016 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
Gareth Hughes22144ab2001-03-12 00:48:37 +000018 *
Keith Whitwell23caf202000-11-16 21:05:34 +000019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
Brian Paul449e47f2003-02-17 16:35:56 +000027/**
28 * \file math/m_matrix.h
29 * \brief Defines basic structures for matrix-handling.
30 */
31
Keith Whitwell23caf202000-11-16 21:05:34 +000032
33#ifndef _M_MATRIX_H
34#define _M_MATRIX_H
35
36
37
38/* Give symbolic names to some of the entries in the matrix to help
39 * out with the rework of the viewport_map as a matrix transform.
40 */
41#define MAT_SX 0
42#define MAT_SY 5
43#define MAT_SZ 10
44#define MAT_TX 12
45#define MAT_TY 13
46#define MAT_TZ 14
47
Keith Whitwell23caf202000-11-16 21:05:34 +000048
Brian Paul449e47f2003-02-17 16:35:56 +000049/**
50 * \defgroup MatFlags MAT_FLAG_XXX-flags
51 *
52 * Bitmasks to indicate different kinds of 4x4 matrices in
53 * GLmatrix::flags
54 */
55/*@{*/
Keith Whitwell23caf202000-11-16 21:05:34 +000056#define MAT_FLAG_IDENTITY 0
57#define MAT_FLAG_GENERAL 0x1
58#define MAT_FLAG_ROTATION 0x2
59#define MAT_FLAG_TRANSLATION 0x4
60#define MAT_FLAG_UNIFORM_SCALE 0x8
61#define MAT_FLAG_GENERAL_SCALE 0x10
62#define MAT_FLAG_GENERAL_3D 0x20
63#define MAT_FLAG_PERSPECTIVE 0x40
64#define MAT_FLAG_SINGULAR 0x80
65#define MAT_DIRTY_TYPE 0x100
66#define MAT_DIRTY_FLAGS 0x200
67#define MAT_DIRTY_INVERSE 0x400
Brian Paul449e47f2003-02-17 16:35:56 +000068/*@}*/
69
Keith Whitwell23caf202000-11-16 21:05:34 +000070
71#define MAT_FLAGS_ANGLE_PRESERVING (MAT_FLAG_ROTATION | \
72 MAT_FLAG_TRANSLATION | \
73 MAT_FLAG_UNIFORM_SCALE)
74
75#define MAT_FLAGS_LENGTH_PRESERVING (MAT_FLAG_ROTATION | \
76 MAT_FLAG_TRANSLATION)
77
78#define MAT_FLAGS_3D (MAT_FLAG_ROTATION | \
79 MAT_FLAG_TRANSLATION | \
80 MAT_FLAG_UNIFORM_SCALE | \
81 MAT_FLAG_GENERAL_SCALE | \
82 MAT_FLAG_GENERAL_3D)
83
84#define MAT_FLAGS_GEOMETRY (MAT_FLAG_GENERAL | \
85 MAT_FLAG_ROTATION | \
86 MAT_FLAG_TRANSLATION | \
87 MAT_FLAG_UNIFORM_SCALE | \
88 MAT_FLAG_GENERAL_SCALE | \
89 MAT_FLAG_GENERAL_3D | \
90 MAT_FLAG_PERSPECTIVE | \
91 MAT_FLAG_SINGULAR)
92
93#define MAT_DIRTY (MAT_DIRTY_TYPE | \
94 MAT_DIRTY_FLAGS | \
95 MAT_DIRTY_INVERSE)
96
97#define TEST_MAT_FLAGS(mat, a) \
98 ((MAT_FLAGS_GEOMETRY & (~(a)) & ((mat)->flags) ) == 0)
99
100
101typedef struct {
102 GLfloat *m; /* 16-byte aligned */
103 GLfloat *inv; /* optional, 16-byte aligned */
Brian Paul449e47f2003-02-17 16:35:56 +0000104 GLuint flags; /**< possible values determined by (of \link
105 MatFlags MAT_FLAG_* flags\endlink) */
106 enum {
107 MATRIX_GENERAL, /**< general 4x4 matrix */
108 MATRIX_IDENTITY, /**< identity matrix */
109 MATRIX_3D_NO_ROT, /**< ortho projection and others... */
110 MATRIX_PERSPECTIVE,/**< perspective projection matrix */
111 MATRIX_2D, /**< 2-D transformation */
112 MATRIX_2D_NO_ROT, /**< 2-D scale & translate only */
113 MATRIX_3D /**< 3-D transformation */
114 } type;
Keith Whitwell23caf202000-11-16 21:05:34 +0000115} GLmatrix;
116
117
118
119
120extern void
121_math_matrix_ctr( GLmatrix *m );
122
123extern void
124_math_matrix_dtr( GLmatrix *m );
125
126extern void
127_math_matrix_alloc_inv( GLmatrix *m );
128
129extern void
130_math_matrix_mul_matrix( GLmatrix *dest, const GLmatrix *a, const GLmatrix *b );
131
132extern void
133_math_matrix_mul_floats( GLmatrix *dest, const GLfloat *b );
134
Gareth Hughes22144ab2001-03-12 00:48:37 +0000135extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000136_math_matrix_loadf( GLmatrix *mat, const GLfloat *m );
137
Gareth Hughes22144ab2001-03-12 00:48:37 +0000138extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000139_math_matrix_translate( GLmatrix *mat, GLfloat x, GLfloat y, GLfloat z );
140
141extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000142_math_matrix_rotate( GLmatrix *m, GLfloat angle,
Keith Whitwell23caf202000-11-16 21:05:34 +0000143 GLfloat x, GLfloat y, GLfloat z );
144
Gareth Hughes22144ab2001-03-12 00:48:37 +0000145extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000146_math_matrix_scale( GLmatrix *mat, GLfloat x, GLfloat y, GLfloat z );
147
148extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000149_math_matrix_ortho( GLmatrix *mat,
Keith Whitwell23caf202000-11-16 21:05:34 +0000150 GLfloat left, GLfloat right,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000151 GLfloat bottom, GLfloat top,
Keith Whitwell23caf202000-11-16 21:05:34 +0000152 GLfloat nearval, GLfloat farval );
153
154extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000155_math_matrix_frustum( GLmatrix *mat,
Brian Pauld8bc5a92001-02-05 18:48:52 +0000156 GLfloat left, GLfloat right,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000157 GLfloat bottom, GLfloat top,
Brian Pauld8bc5a92001-02-05 18:48:52 +0000158 GLfloat nearval, GLfloat farval );
Keith Whitwell23caf202000-11-16 21:05:34 +0000159
160extern void
161_math_matrix_set_identity( GLmatrix *dest );
162
Gareth Hughes22144ab2001-03-12 00:48:37 +0000163extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000164_math_matrix_copy( GLmatrix *to, const GLmatrix *from );
165
166extern void
Keith Whitwellad2ac212000-11-24 10:25:05 +0000167_math_matrix_analyse( GLmatrix *mat );
Keith Whitwell23caf202000-11-16 21:05:34 +0000168
169extern void
170_math_matrix_print( const GLmatrix *m );
171
172
173
174
175/* Related functions that don't actually operate on GLmatrix structs:
176 */
177extern void
178_math_transposef( GLfloat to[16], const GLfloat from[16] );
179
180extern void
181_math_transposed( GLdouble to[16], const GLdouble from[16] );
182
183extern void
184_math_transposefd( GLfloat to[16], const GLdouble from[16] );
185
186
187
188
189#endif