From 1791901468a4eea3cc1a9c9f3a6c4913ff8a35eb Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 5 Oct 2000 23:10:42 +0000 Subject: update TriangleCaps in GL_POINT/POLYGON_SMOOTH cases --- src/mesa/main/enable.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/mesa') diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 67cf170689..0adf0f5522 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.24 2000/09/26 20:53:53 brianp Exp $ */ +/* $Id: enable.c,v 1.25 2000/10/05 23:10:42 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -290,12 +290,14 @@ void _mesa_set_enable( GLcontext *ctx, GLenum cap, GLboolean state ) case GL_POINT_SMOOTH: if (ctx->Point.SmoothFlag!=state) { ctx->Point.SmoothFlag = state; + ctx->TriangleCaps ^= DD_POINT_SMOOTH; ctx->NewState |= NEW_RASTER_OPS; } break; case GL_POLYGON_SMOOTH: if (ctx->Polygon.SmoothFlag!=state) { ctx->Polygon.SmoothFlag = state; + ctx->TriangleCaps ^= DD_TRI_SMOOTH; ctx->NewState |= NEW_RASTER_OPS; } break; -- cgit v1.2.3