Mesa (master): mesa: re-dimension RasterTexCoords and CoordReplace

Brian Paul brianp at kemper.freedesktop.org
Wed Feb 3 22:51:45 UTC 2010


Module: Mesa
Branch: master
Commit: ea81daf9544205b892926bdbbcdfdfc63fd7d872
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ea81daf9544205b892926bdbbcdfdfc63fd7d872

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Feb  3 14:09:48 2010 -0700

mesa: re-dimension RasterTexCoords and CoordReplace

These are limited to the number of texture coordinate units.

---

 src/mesa/main/mtypes.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 297c5ae..aeb9b3a 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -631,7 +631,7 @@ struct gl_current_attrib
    GLfloat RasterColor[4];
    GLfloat RasterSecondaryColor[4];
    GLfloat RasterIndex;
-   GLfloat RasterTexCoords[MAX_TEXTURE_UNITS][4];
+   GLfloat RasterTexCoords[MAX_TEXTURE_COORD_UNITS][4];
    GLboolean RasterPosValid;
    /*@}*/
 };
@@ -963,7 +963,7 @@ struct gl_point_attrib
    GLfloat Threshold;		/**< GL_EXT_point_parameters */
    GLboolean _Attenuated;	/**< True if Params != [1, 0, 0] */
    GLboolean PointSprite;	/**< GL_NV/ARB_point_sprite */
-   GLboolean CoordReplace[MAX_TEXTURE_UNITS]; /**< GL_ARB_point_sprite */
+   GLboolean CoordReplace[MAX_TEXTURE_COORD_UNITS]; /**< GL_ARB_point_sprite*/
    GLenum SpriteRMode;		/**< GL_NV_point_sprite (only!) */
    GLenum SpriteOrigin;		/**< GL_ARB_point_sprite */
 };




More information about the mesa-commit mailing list