diff options
author | Brian Paul <[email protected]> | 2002-06-07 16:01:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-07 16:01:03 +0000 |
commit | 112f7cdeabebb487418ca10e5911920adfb7832b (patch) | |
tree | fc9a76b07d49778a3d9451017ca7e443b8c4dc4a /src/mesa/main/attrib.c | |
parent | f21a4872e8218c0454107686a531eb0ff19c36bb (diff) |
fixed point sprite bug
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 9a13aa76914..b75fe4d6259 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; |