summaryrefslogtreecommitdiff
path: root/src/mesa/main/matrix.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-06-12 22:08:41 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-06-12 22:08:41 +0000
commitae47121fa336f53c5ab51df3dc699db018feff18 (patch)
treedb08af54d76e009442077e0f8450f052f7fafc80 /src/mesa/main/matrix.c
parent1676268eab04523fe4fe325d39d427fc098e52a5 (diff)
removed old, redundant CurrentTransformUnit state var
Diffstat (limited to 'src/mesa/main/matrix.c')
-rw-r--r--src/mesa/main/matrix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c
index a2b7af02ba..cb786607df 100644
--- a/src/mesa/main/matrix.c
+++ b/src/mesa/main/matrix.c
@@ -1,4 +1,4 @@
-/* $Id: matrix.c,v 1.34 2001/03/19 22:45:52 brianp Exp $ */
+/* $Id: matrix.c,v 1.35 2001/06/12 22:08:41 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -70,7 +70,7 @@ do { \
flags |= _NEW_PROJECTION; \
break; \
case GL_TEXTURE: \
- mat = &ctx->TextureMatrix[ctx->Texture.CurrentTransformUnit]; \
+ mat = &ctx->TextureMatrix[ctx->Texture.CurrentUnit]; \
flags |= _NEW_TEXTURE_MATRIX; \
break; \
case GL_COLOR: \
@@ -183,7 +183,7 @@ _mesa_PushMatrix( void )
break;
case GL_TEXTURE:
{
- GLuint t = ctx->Texture.CurrentTransformUnit;
+ GLuint t = ctx->Texture.CurrentUnit;
if (ctx->TextureStackDepth[t] >= MAX_TEXTURE_STACK_DEPTH - 1) {
_mesa_error( ctx, GL_STACK_OVERFLOW, "glPushMatrix");
return;
@@ -239,7 +239,7 @@ _mesa_PopMatrix( void )
break;
case GL_TEXTURE:
{
- GLuint t = ctx->Texture.CurrentTransformUnit;
+ GLuint t = ctx->Texture.CurrentUnit;
if (ctx->TextureStackDepth[t]==0) {
_mesa_error( ctx, GL_STACK_UNDERFLOW, "glPopMatrix");
return;