diff options
author | Brian Paul <[email protected]> | 2002-05-09 21:54:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-05-09 21:54:16 +0000 |
commit | 002483e009e7c8610a5abfbf61a43694cb34e1d3 (patch) | |
tree | cd67370d2c9845112ccbc08b964b83c9af048ab1 /src/mesa/main/rastpos.c | |
parent | 9228a9362cbdc6894731bf6e4ba38162eea1e6db (diff) |
Minor change to current raster position and texcoords.
Diffstat (limited to 'src/mesa/main/rastpos.c')
-rw-r--r-- | src/mesa/main/rastpos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/rastpos.c b/src/mesa/main/rastpos.c index 3f2f6bab57c..483324932ba 100644 --- a/src/mesa/main/rastpos.c +++ b/src/mesa/main/rastpos.c @@ -1,4 +1,4 @@ -/* $Id: rastpos.c,v 1.36 2002/03/29 17:27:59 brianp Exp $ */ +/* $Id: rastpos.c,v 1.37 2002/05/09 21:54:16 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -368,7 +368,7 @@ raster_pos4f(GLcontext *ctx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) { GLuint texSet; for (texSet = 0; texSet < ctx->Const.MaxTextureUnits; texSet++) { - COPY_4FV( ctx->Current.RasterMultiTexCoord[texSet], + COPY_4FV( ctx->Current.RasterTexCoords[texSet], ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texSet] ); } } @@ -584,7 +584,7 @@ window_pos3f(GLfloat x, GLfloat y, GLfloat z) { GLuint texSet; for (texSet = 0; texSet < ctx->Const.MaxTextureUnits; texSet++) { - COPY_4FV( ctx->Current.RasterMultiTexCoord[texSet], + COPY_4FV( ctx->Current.RasterTexCoords[texSet], ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texSet] ); } } |