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/stencil.c | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/main/stencil.c')
-rw-r--r-- | src/mesa/main/stencil.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/stencil.c b/src/mesa/main/stencil.c index 6775d58677a..1520fe8c966 100644 --- a/src/mesa/main/stencil.c +++ b/src/mesa/main/stencil.c @@ -1,4 +1,4 @@ -/* $Id: stencil.c,v 1.24 2000/12/26 05:09:29 keithw Exp $ */ +/* $Id: stencil.c,v 1.25 2001/03/03 20:33:28 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -78,7 +78,7 @@ _mesa_StencilFunc( GLenum func, GLint ref, GLuint mask ) case GL_ALWAYS: break; default: - gl_error( ctx, GL_INVALID_ENUM, "glStencilFunc" ); + _mesa_error( ctx, GL_INVALID_ENUM, "glStencilFunc" ); return; } @@ -143,7 +143,7 @@ _mesa_StencilOp(GLenum fail, GLenum zfail, GLenum zpass) } /* FALL-THROUGH */ default: - gl_error(ctx, GL_INVALID_ENUM, "glStencilOp"); + _mesa_error(ctx, GL_INVALID_ENUM, "glStencilOp"); return; } switch (zfail) { @@ -161,7 +161,7 @@ _mesa_StencilOp(GLenum fail, GLenum zfail, GLenum zpass) } /* FALL-THROUGH */ default: - gl_error(ctx, GL_INVALID_ENUM, "glStencilOp"); + _mesa_error(ctx, GL_INVALID_ENUM, "glStencilOp"); return; } switch (zpass) { @@ -179,7 +179,7 @@ _mesa_StencilOp(GLenum fail, GLenum zfail, GLenum zpass) } /* FALL-THROUGH */ default: - gl_error(ctx, GL_INVALID_ENUM, "glStencilOp"); + _mesa_error(ctx, GL_INVALID_ENUM, "glStencilOp"); return; } |