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/drivers/glide | |
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/drivers/glide')
-rw-r--r-- | src/mesa/drivers/glide/fxdd.c | 5 | ||||
-rw-r--r-- | src/mesa/drivers/glide/fxdrv.h | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index 8cdbe35382a..a5541eceb1d 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -1,4 +1,4 @@ -/* $Id: fxdd.c,v 1.85 2002/03/16 00:53:15 brianp Exp $ */ +/* $Id: fxdd.c,v 1.86 2002/06/13 04:28:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -766,9 +766,6 @@ fxDDInitFxMesaContext(fxMesaContext fxMesa) FX_grGlideGetState((GrState *) fxMesa->state); - /* Run the config file */ - _mesa_read_config_file(fxMesa->glCtx); - return 1; } diff --git a/src/mesa/drivers/glide/fxdrv.h b/src/mesa/drivers/glide/fxdrv.h index f3f6fa4c9b8..27e4f146b9c 100644 --- a/src/mesa/drivers/glide/fxdrv.h +++ b/src/mesa/drivers/glide/fxdrv.h @@ -1,4 +1,4 @@ -/* $Id: fxdrv.h,v 1.52 2001/09/23 16:50:01 brianp Exp $ */ +/* $Id: fxdrv.h,v 1.53 2002/06/13 04:28:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -49,6 +49,7 @@ #endif #include "context.h" +#include "imports.h" #include "macros.h" #include "matrix.h" #include "mem.h" |