summaryrefslogtreecommitdiff
path: root/src/mesa/main/matrix.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-13 00:27:05 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-13 00:27:05 +0000
commitfd75e6d4e551fa21ffec6f215698609f30937d3d (patch)
tree6c2d12b5a2a7a3c806a04a1e35d9db3a8ee9ef07 /src/mesa/main/matrix.c
parent4463a24909c9a34fc5ad79b26f2ce03c3ae14118 (diff)
commented out unused function
Diffstat (limited to 'src/mesa/main/matrix.c')
-rw-r--r--src/mesa/main/matrix.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c
index a86c0d3d6f..5d4e9f7889 100644
--- a/src/mesa/main/matrix.c
+++ b/src/mesa/main/matrix.c
@@ -1,10 +1,10 @@
-/* $Id: matrix.c,v 1.12 1999/12/10 20:01:06 brianp Exp $ */
+/* $Id: matrix.c,v 1.13 2000/01/13 00:27:05 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -1554,13 +1554,14 @@ void gl_matrix_dtr( GLmatrix *m )
}
}
+#if 0
void gl_matrix_set_identity( GLmatrix *m )
{
MEMCPY( m->m, Identity, sizeof(Identity));
m->type = MATRIX_IDENTITY;
m->flags = MAT_DIRTY_DEPENDENTS;
}
-
+#endif
void gl_matrix_alloc_inv( GLmatrix *m )
{