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/drawpix.c | |
parent | 9228a9362cbdc6894731bf6e4ba38162eea1e6db (diff) |
Minor change to current raster position and texcoords.
Diffstat (limited to 'src/mesa/main/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 9f2047878af..1c37f5b9a2c 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -1,4 +1,4 @@ -/* $Id: drawpix.c,v 1.59 2002/01/15 21:49:57 brianp Exp $ */ +/* $Id: drawpix.c,v 1.60 2002/05/09 21:54:16 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -84,7 +84,7 @@ _mesa_DrawPixels( GLsizei width, GLsizei height, ctx->Current.RasterPos, ctx->Current.RasterColor, ctx->Current.RasterIndex, - ctx->Current.RasterTexCoord ); + ctx->Current.RasterTexCoords[0] ); } } else if (ctx->RenderMode==GL_SELECT) { @@ -163,7 +163,7 @@ _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height, ctx->Current.RasterPos, ctx->Current.RasterColor, ctx->Current.RasterIndex, - ctx->Current.RasterTexCoord ); + ctx->Current.RasterTexCoords[0] ); } } else if (ctx->RenderMode == GL_SELECT) { @@ -212,7 +212,7 @@ _mesa_Bitmap( GLsizei width, GLsizei height, ctx->Current.RasterPos, ctx->Current.RasterColor, ctx->Current.RasterIndex, - ctx->Current.RasterTexCoord ); + ctx->Current.RasterTexCoords[0] ); } } else if (ctx->RenderMode==GL_SELECT) { |