summaryrefslogtreecommitdiff
path: root/src/mesa/math/m_debug_xform.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-02-25 19:27:06 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-02-25 19:27:06 +0000
commitadb1a2911aaaa2dad09b955b20834eb3e1e9caf7 (patch)
treecad3146845909545f8868de05ee8462f63829e3a /src/mesa/math/m_debug_xform.c
parenta10be7fb8546d985b532cabfca95d56726e79856 (diff)
move matrix type enum out of GLmatrix struct
Diffstat (limited to 'src/mesa/math/m_debug_xform.c')
-rw-r--r--src/mesa/math/m_debug_xform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c
index 1feb3cffe1..7879660fdf 100644
--- a/src/mesa/math/m_debug_xform.c
+++ b/src/mesa/math/m_debug_xform.c
@@ -1,4 +1,4 @@
-/* $Id: m_debug_xform.c,v 1.11 2002/12/04 14:24:44 brianp Exp $ */
+/* $Id: m_debug_xform.c,v 1.12 2003/02/25 19:27:07 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -106,7 +106,7 @@ static int *templates[7] = {
m_2d_no_rot,
m_3d
};
-static int mtypes[7] = {
+static enum matrix_type mtypes[7] = {
MATRIX_GENERAL,
MATRIX_IDENTITY,
MATRIX_3D_NO_ROT,