summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-05-09 21:54:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-05-09 21:54:16 +0000
commit002483e009e7c8610a5abfbf61a43694cb34e1d3 (patch)
treecd67370d2c9845112ccbc08b964b83c9af048ab1 /src/mesa/main/mtypes.h
parent9228a9362cbdc6894731bf6e4ba38162eea1e6db (diff)
Minor change to current raster position and texcoords.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 41ba77ba92..93f217f57c 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1,4 +1,4 @@
-/* $Id: mtypes.h,v 1.74 2002/05/02 00:59:20 brianp Exp $ */
+/* $Id: mtypes.h,v 1.75 2002/05/09 21:54:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -360,8 +360,7 @@ struct gl_current_attrib {
GLfloat RasterColor[4]; /* Current raster color */
GLfloat RasterSecondaryColor[4]; /* Current rast 2ndary color */
GLuint RasterIndex; /* Current raster index */
- GLfloat *RasterTexCoord; /* Current raster texcoord */
- GLfloat RasterMultiTexCoord[MAX_TEXTURE_UNITS][4];
+ GLfloat RasterTexCoords[MAX_TEXTURE_UNITS][4];/* Current raster texcoords */
GLboolean RasterPosValid; /* Raster pos valid flag */
};