diff options
author | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-29 19:48:15 +0000 |
commit | 4e9676fb13f60ecdbc247b120031f18cd3febcb0 (patch) | |
tree | 9f310d4b547592b025b5a7063aaf2b629bef6676 /src/mesa/main/context.h | |
parent | f1ad551604122dd2679dbd31ae6b2fa1197e9848 (diff) |
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/main/context.h')
-rw-r--r-- | src/mesa/main/context.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 8e9524fec58..2b359d0968e 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -1,4 +1,4 @@ -/* $Id: context.h,v 1.32 2002/06/15 02:38:15 brianp Exp $ */ +/* $Id: context.h,v 1.33 2002/06/29 19:48:15 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -31,6 +31,7 @@ #include "glapi.h" #include "mtypes.h" +#include "imports.h" /* @@ -229,20 +230,7 @@ _mesa_get_dispatch(GLcontext *ctx); */ extern void -_mesa_problem( const GLcontext *ctx, const char *s ); - -extern void -_mesa_warning( const GLcontext *ctx, const char *s ); - -extern void -_mesa_error( GLcontext *ctx, GLenum error, const char *s ); - -extern void -_mesa_debug( const GLcontext *ctx, const char *fmtString, ... ); - -extern void -_mesa_printf( const GLcontext *ctx, const char *fmtString, ... ); - +_mesa_record_error( GLcontext *ctx, GLenum error ); extern void |