From 08836341788a9f9d638d9dc8328510ccd18ddeb5 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 3 Mar 2001 20:33:27 +0000 Subject: lots of gl_*() to _mesa_*() namespace clean-up --- src/mesa/main/accum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/accum.c') diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c index 59d3d59527..32c2298c74 100644 --- a/src/mesa/main/accum.c +++ b/src/mesa/main/accum.c @@ -1,4 +1,4 @@ -/* $Id: accum.c,v 1.35 2001/01/29 20:47:39 keithw Exp $ */ +/* $Id: accum.c,v 1.36 2001/03/03 20:33:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -69,12 +69,12 @@ _mesa_Accum( GLenum op, GLfloat value ) ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); if (ctx->Visual.accumRedBits == 0 || ctx->DrawBuffer != ctx->ReadBuffer) { - gl_error(ctx, GL_INVALID_OPERATION, "glAccum"); + _mesa_error(ctx, GL_INVALID_OPERATION, "glAccum"); return; } if (ctx->NewState) - gl_update_state( ctx ); + _mesa_update_state( ctx ); /* Determine region to operate upon. */ if (ctx->Scissor.Enabled) { -- cgit v1.2.3