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/hint.c | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/main/hint.c')
-rw-r--r-- | src/mesa/main/hint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/hint.c b/src/mesa/main/hint.c index 0c6ddf27e90..4f132c4dd4a 100644 --- a/src/mesa/main/hint.c +++ b/src/mesa/main/hint.c @@ -1,4 +1,4 @@ -/* $Id: hint.c,v 1.7 2001/01/24 04:56:20 brianp Exp $ */ +/* $Id: hint.c,v 1.8 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -50,10 +50,10 @@ GLboolean _mesa_try_Hint( GLcontext *ctx, GLenum target, GLenum mode ) { if (MESA_VERBOSE & VERBOSE_API) - fprintf(stderr, "glHint %s %d\n", gl_lookup_enum_by_nr(target), mode); + fprintf(stderr, "glHint %s %d\n", _mesa_lookup_enum_by_nr(target), mode); if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) { - gl_error(ctx, GL_INVALID_ENUM, "glHint(mode)"); + _mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)"); return GL_FALSE; } @@ -100,7 +100,7 @@ _mesa_try_Hint( GLcontext *ctx, GLenum target, GLenum mode ) /* GL_ARB_texture_compression */ case GL_TEXTURE_COMPRESSION_HINT_ARB: if (ctx->Extensions.ARB_texture_compression) { - gl_error(ctx, GL_INVALID_ENUM, "glHint(target)"); + _mesa_error(ctx, GL_INVALID_ENUM, "glHint(target)"); return GL_TRUE; } if (ctx->Hint.TextureCompression == mode) @@ -110,7 +110,7 @@ _mesa_try_Hint( GLcontext *ctx, GLenum target, GLenum mode ) break; default: - gl_error(ctx, GL_INVALID_ENUM, "glHint(target)"); + _mesa_error(ctx, GL_INVALID_ENUM, "glHint(target)"); return GL_FALSE; } |