From: Brian Paul Date: Fri, 7 Jun 2002 16:01:03 +0000 (+0000) Subject: fixed point sprite bug X-Git-Tag: 062012170305~26466 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=112f7cdeabebb487418ca10e5911920adfb7832b;p=profile%2Fivi%2Fmesa.git fixed point sprite bug --- diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 9a13aa7..b75fe4d 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.64 2002/05/27 17:04:52 brianp Exp $ */ +/* $Id: attrib.c,v 1.65 2002/06/07 16:01:03 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -223,6 +223,7 @@ _mesa_PushAttrib(GLbitfield mask) attr->RasterPositionUnclipped = ctx->Transform.RasterPositionUnclipped; attr->PixelTexture = ctx->Pixel.PixelTextureEnabled; attr->PointSmooth = ctx->Point.SmoothFlag; + attr->PointSprite = ctx->Point.PointSprite; attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint; attr->PolygonOffsetLine = ctx->Polygon.OffsetLine; attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;