diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-06-29 19:48:15 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-06-29 19:48:15 +0000 |
commit | 4e9676fb13f60ecdbc247b120031f18cd3febcb0 (patch) | |
tree | 9f310d4b547592b025b5a7063aaf2b629bef6676 /src/mesa/math/m_debug_util.h | |
parent | f1ad551604122dd2679dbd31ae6b2fa1197e9848 (diff) | |
download | external_mesa3d-4e9676fb13f60ecdbc247b120031f18cd3febcb0.zip external_mesa3d-4e9676fb13f60ecdbc247b120031f18cd3febcb0.tar.gz external_mesa3d-4e9676fb13f60ecdbc247b120031f18cd3febcb0.tar.bz2 |
Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.
Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
Diffstat (limited to 'src/mesa/math/m_debug_util.h')
-rw-r--r-- | src/mesa/math/m_debug_util.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h index efedda9..f96a6b8 100644 --- a/src/mesa/math/m_debug_util.h +++ b/src/mesa/math/m_debug_util.h @@ -1,4 +1,4 @@ -/* $Id: m_debug_util.h,v 1.4 2001/05/23 14:27:03 brianp Exp $ */ +/* $Id: m_debug_util.h,v 1.5 2002/06/29 19:48:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -263,15 +263,6 @@ static int significand_match( GLfloat a, GLfloat b ) enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 }; -static void init_matrix( GLfloat *m ) -{ - m[0] = 63.0; m[4] = 43.0; m[ 8] = 29.0; m[12] = 43.0; - m[1] = 55.0; m[5] = 17.0; m[ 9] = 31.0; m[13] = 7.0; - m[2] = 44.0; m[6] = 9.0; m[10] = 7.0; m[14] = 3.0; - m[3] = 11.0; m[7] = 23.0; m[11] = 91.0; m[15] = 9.0; -} - - /* Ensure our arrays are correctly aligned. */ #if defined(__GNUC__) |