blob: 74eb610e81afab108bccc43edf28d38fb0db402e [file] [log] [blame]
Brian Pauladb1a292003-02-25 19:27:06 +00001/* $Id: m_matrix.h,v 1.6 2003/02/25 19:27: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
Brian Pauladb1a292003-02-25 19:27:06 +0000101enum matrix_type {
102 MATRIX_GENERAL, /**< general 4x4 matrix */
103 MATRIX_IDENTITY, /**< identity matrix */
104 MATRIX_3D_NO_ROT, /**< ortho projection and others... */
105 MATRIX_PERSPECTIVE,/**< perspective projection matrix */
106 MATRIX_2D, /**< 2-D transformation */
107 MATRIX_2D_NO_ROT, /**< 2-D scale & translate only */
108 MATRIX_3D /**< 3-D transformation */
109};
110
Keith Whitwell23caf202000-11-16 21:05:34 +0000111typedef struct {
112 GLfloat *m; /* 16-byte aligned */
113 GLfloat *inv; /* optional, 16-byte aligned */
Brian Paul449e47f2003-02-17 16:35:56 +0000114 GLuint flags; /**< possible values determined by (of \link
115 MatFlags MAT_FLAG_* flags\endlink) */
Brian Pauladb1a292003-02-25 19:27:06 +0000116
117 enum matrix_type type;
Keith Whitwell23caf202000-11-16 21:05:34 +0000118} GLmatrix;
119
120
121
122
123extern void
124_math_matrix_ctr( GLmatrix *m );
125
126extern void
127_math_matrix_dtr( GLmatrix *m );
128
129extern void
130_math_matrix_alloc_inv( GLmatrix *m );
131
132extern void
133_math_matrix_mul_matrix( GLmatrix *dest, const GLmatrix *a, const GLmatrix *b );
134
135extern void
136_math_matrix_mul_floats( GLmatrix *dest, const GLfloat *b );
137
Gareth Hughes22144ab2001-03-12 00:48:37 +0000138extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000139_math_matrix_loadf( GLmatrix *mat, const GLfloat *m );
140
Gareth Hughes22144ab2001-03-12 00:48:37 +0000141extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000142_math_matrix_translate( GLmatrix *mat, GLfloat x, GLfloat y, GLfloat z );
143
144extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000145_math_matrix_rotate( GLmatrix *m, GLfloat angle,
Keith Whitwell23caf202000-11-16 21:05:34 +0000146 GLfloat x, GLfloat y, GLfloat z );
147
Gareth Hughes22144ab2001-03-12 00:48:37 +0000148extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000149_math_matrix_scale( GLmatrix *mat, GLfloat x, GLfloat y, GLfloat z );
150
151extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000152_math_matrix_ortho( GLmatrix *mat,
Keith Whitwell23caf202000-11-16 21:05:34 +0000153 GLfloat left, GLfloat right,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000154 GLfloat bottom, GLfloat top,
Keith Whitwell23caf202000-11-16 21:05:34 +0000155 GLfloat nearval, GLfloat farval );
156
157extern void
Gareth Hughes22144ab2001-03-12 00:48:37 +0000158_math_matrix_frustum( GLmatrix *mat,
Brian Pauld8bc5a92001-02-05 18:48:52 +0000159 GLfloat left, GLfloat right,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000160 GLfloat bottom, GLfloat top,
Brian Pauld8bc5a92001-02-05 18:48:52 +0000161 GLfloat nearval, GLfloat farval );
Keith Whitwell23caf202000-11-16 21:05:34 +0000162
163extern void
164_math_matrix_set_identity( GLmatrix *dest );
165
Gareth Hughes22144ab2001-03-12 00:48:37 +0000166extern void
Keith Whitwell23caf202000-11-16 21:05:34 +0000167_math_matrix_copy( GLmatrix *to, const GLmatrix *from );
168
169extern void
Keith Whitwellad2ac212000-11-24 10:25:05 +0000170_math_matrix_analyse( GLmatrix *mat );
Keith Whitwell23caf202000-11-16 21:05:34 +0000171
172extern void
173_math_matrix_print( const GLmatrix *m );
174
175
176
177
178/* Related functions that don't actually operate on GLmatrix structs:
179 */
180extern void
181_math_transposef( GLfloat to[16], const GLfloat from[16] );
182
183extern void
184_math_transposed( GLdouble to[16], const GLdouble from[16] );
185
186extern void
187_math_transposefd( GLfloat to[16], const GLdouble from[16] );
188
189
190
191
192#endif