From: Eric Anholt Date: Sat, 25 Sep 2004 21:06:58 +0000 (+0000) Subject: Triangle stipple is a fallback, since we don't have code for the stippling. X-Git-Tag: 062012170305~24020 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18c459c10b7906791b4bfc092cf43071bcdc9038;p=profile%2Fivi%2Fmesa.git Triangle stipple is a fallback, since we don't have code for the stippling. Doesn't seem to help with glean's paths test, but I'm pretty sure it's correct. --- diff --git a/src/mesa/drivers/dri/sis/sis_tris.c b/src/mesa/drivers/dri/sis/sis_tris.c index 048ff84..04c750e 100644 --- a/src/mesa/drivers/dri/sis/sis_tris.c +++ b/src/mesa/drivers/dri/sis/sis_tris.c @@ -611,7 +611,7 @@ sis_fallback_point( sisContextPtr smesa, #define POINT_FALLBACK (DD_POINT_SMOOTH) #define LINE_FALLBACK (DD_LINE_STIPPLE|DD_LINE_SMOOTH) -#define TRI_FALLBACK (DD_TRI_SMOOTH) +#define TRI_FALLBACK (DD_TRI_STIPPLE|DD_TRI_SMOOTH) #define ANY_FALLBACK_FLAGS (POINT_FALLBACK|LINE_FALLBACK|TRI_FALLBACK) #define ANY_RASTER_FLAGS (DD_TRI_LIGHT_TWOSIDE|DD_TRI_OFFSET|DD_TRI_UNFILLED) #define _SIS_NEW_RENDER_STATE (ANY_RASTER_FLAGS | ANY_FALLBACK_FLAGS)