fixed two GL error calls
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 17 May 2001 21:33:14 +0000 (21:33 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 17 May 2001 21:33:14 +0000 (21:33 +0000)
src/mesa/main/texstate.c

index 1dd084a..321628e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: texstate.c,v 1.48 2001/04/25 15:41:22 brianp Exp $ */
+/* $Id: texstate.c,v 1.49 2001/05/17 21:33:14 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -2010,7 +2010,7 @@ _mesa_ActiveTextureARB( GLenum target )
              _mesa_lookup_enum_by_nr(target));
 
    if (texUnit > ctx->Const.MaxTextureUnits) {
-      _mesa_error(ctx, GL_INVALID_OPERATION, "glActiveTextureARB(target)");
+      _mesa_error(ctx, GL_INVALID_ENUM, "glActiveTextureARB(target)");
       return;
    }
 
@@ -2032,7 +2032,7 @@ _mesa_ClientActiveTextureARB( GLenum target )
    ASSERT_OUTSIDE_BEGIN_END(ctx);
 
    if (texUnit > ctx->Const.MaxTextureUnits) {
-      _mesa_error(ctx, GL_INVALID_OPERATION, "glActiveTextureARB(target)");
+      _mesa_error(ctx, GL_INVALID_ENUM, "glActiveTextureARB(target)");
       return;
    }