diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-05-18 21:58:04 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-05-18 21:58:04 +0000 |
commit | b0f8d449550ab444e7910306c7b1badb3802e9f9 (patch) | |
tree | 25403ebb929b9e63865b4eb83e4122f47fc5067c | |
parent | 26fa045eb460b1bb84383a5553824c913c7ac9c4 (diff) |
fixed a bad error string in ClientActiveTexture()
-rw-r--r-- | src/mesa/main/texstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c index 2185bb8801..25cae9f285 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -1,4 +1,4 @@ -/* $Id: texstate.c,v 1.15.4.6 2001/05/17 22:41:47 brianp Exp $ */ +/* $Id: texstate.c,v 1.15.4.7 2001/05/18 21:58:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1660,7 +1660,7 @@ _mesa_ClientActiveTextureARB( GLenum target ) ctx->Array.ActiveTexture = texUnit; } else { - gl_error(ctx, GL_INVALID_ENUM, "glActiveTextureARB(target)"); + gl_error(ctx, GL_INVALID_ENUM, "glClientActiveTextureARB(target)"); } } |