summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2005-01-11 15:24:24 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2005-01-11 15:24:24 +0000
commit51365b2d0daf0e340074f07b2362896ae9c60a9e (patch)
tree4b14f2da5e0e33e576aa764d22d5d210efab050e
parent0275d921ac344e91cf25f097d6b262b2ac06ff7e (diff)
fallback on polygon.stippleflag (thanks Keith)
-rw-r--r--src/mesa/drivers/dri/unichrome/via_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_state.c b/src/mesa/drivers/dri/unichrome/via_state.c
index 94b3201161..f0c8e8868c 100644
--- a/src/mesa/drivers/dri/unichrome/via_state.c
+++ b/src/mesa/drivers/dri/unichrome/via_state.c
@@ -786,7 +786,7 @@ static void viaPolygonStipple( GLcontext *ctx, const GLubyte *mask )
/* Fallback for the CLE266 case as it doesn't seem to work */
if (vmesa->viaScreen->deviceID == VIA_CLE266) {
- FALLBACK( vmesa, VIA_FALLBACK_STIPPLE, GL_TRUE);
+ FALLBACK( vmesa, VIA_FALLBACK_STIPPLE, ctx->Polygon.StippleFlag);
} else {
for (i=0;i<128;i++)
s[i] = mask[i];