From: Mathias Fröhlich Date: Sun, 22 May 2016 12:10:19 +0000 (+0200) Subject: swrast: Convert swrast to use CoordsReplaceBits. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=664ba9ccc9180f390606b3f3cc56c4be4eb838e2;p=mesa.git swrast: Convert swrast to use CoordsReplaceBits. Switch over to use the CoordsReplaceBits bitmask. Reviewed-by: Brian Paul Reviewed-by: Ian Romanick Signed-off-by: Mathias Fröhlich --- diff --git a/src/mesa/swrast/s_points.c b/src/mesa/swrast/s_points.c index 3163b0407ea..82128508de2 100644 --- a/src/mesa/swrast/s_points.c +++ b/src/mesa/swrast/s_points.c @@ -139,8 +139,8 @@ sprite_point(struct gl_context *ctx, const SWvertex *vert) if (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) { /* a texcoord attribute */ const GLuint u = attr - VARYING_SLOT_TEX0; - assert(u < ARRAY_SIZE(ctx->Point.CoordReplace)); - if (ctx->Point.CoordReplace[u]) { + assert(u < MAX_TEXTURE_COORD_UNITS); + if (ctx->Point.CoordReplaceBits & (1u << u)) { tCoords[numTcoords++] = attr; if (ctx->Point.SpriteRMode == GL_ZERO)