diff options
author | Brian Paul <[email protected]> | 2002-06-13 04:28:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-13 04:28:29 +0000 |
commit | 9a33a11d714c90162d32781ebbd2c1dfab52cfd1 (patch) | |
tree | 00ec2c2fbe1ae59d732c34d2babd0ea7792d6b6a /src/mesa/main/glheader.h | |
parent | 1013e4650473ef0aceac7f3cd571b982ff249250 (diff) |
New _mesa_debug() function to replace fprintf() calls.
Some source files updated to call _mesa_debug(), but not finished.
Added __GLimports as a parameter to _mesa_create/init_context() and
updated drivers accordingly.
Fleshed-out more of the __GLimports and __GLexports functionality.
Removed run-time config file support (config.c)
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 3a66f618a20..8a9cf4b82b1 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -1,4 +1,4 @@ -/* $Id: glheader.h,v 1.26 2002/06/12 00:52:50 brianp Exp $ */ +/* $Id: glheader.h,v 1.27 2002/06/13 04:28:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -72,6 +72,9 @@ #include "conf.h" #endif +#ifdef DEBUG +#include <stdarg.h> /* for _mesa_debug() only */ +#endif #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) |