diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
commit | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (patch) | |
tree | 6bd480b7f5f595c63914b1d39727d70a0f954723 /src/mesa/main/context.h | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/main/context.h')
-rw-r--r-- | src/mesa/main/context.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index d10953f7515..792862c0270 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -1,4 +1,4 @@ -/* $Id: context.h,v 1.23 2001/02/28 00:27:48 brianp Exp $ */ +/* $Id: context.h,v 1.24 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -197,13 +197,13 @@ _mesa_get_dispatch(GLcontext *ctx); */ extern void -gl_problem( const GLcontext *ctx, const char *s ); +_mesa_problem( const GLcontext *ctx, const char *s ); extern void _mesa_warning( const GLcontext *ctx, const char *s ); extern void -gl_error( GLcontext *ctx, GLenum error, const char *s ); +_mesa_error( GLcontext *ctx, GLenum error, const char *s ); extern void _mesa_compile_error( GLcontext *ctx, GLenum error, const char *s ); @@ -219,10 +219,11 @@ _mesa_Flush( void ); extern void -gl_read_config_file(GLcontext *ctx); +_mesa_read_config_file(GLcontext *ctx); extern void -gl_register_config_var(const char *name, void (*notify)( const char *, int )); +_mesa_register_config_var(const char *name, + void (*notify)( const char *, int )); #endif |