diff options
author | Eric Anholt <[email protected]> | 2012-03-05 15:24:17 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-03-20 15:27:46 -0700 |
commit | 67d3ff760a33f3f98b89d3a6422bb85c199a9963 (patch) | |
tree | 9722650afeceea14a773d35f1900e45110b2ba47 /src/mesa/drivers/dri/i915 | |
parent | cdcfd5d1d60179e60e3a0a47dda71bfe91083105 (diff) |
intel: Drop the INTEL_STRICT_CONFORMANCE environment variable.
If you want to test the graphics driver, you want to test it under the
conditions that users will see, not some set of additional fallbacks.
If you want to test swrast, run the swrast driver (or no_rast=true)
instead.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_tris.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_tris.c b/src/mesa/drivers/dri/i915/intel_tris.c index a36011a2769..c802d7231d0 100644 --- a/src/mesa/drivers/dri/i915/intel_tris.c +++ b/src/mesa/drivers/dri/i915/intel_tris.c @@ -944,7 +944,7 @@ intelFastRenderClippedPoly(struct gl_context * ctx, const GLuint * elts, GLuint -#define ANY_FALLBACK_FLAGS (DD_LINE_STIPPLE | DD_TRI_STIPPLE | DD_POINT_ATTEN | DD_POINT_SMOOTH | DD_TRI_SMOOTH) +#define ANY_FALLBACK_FLAGS (DD_LINE_STIPPLE | DD_TRI_STIPPLE | DD_POINT_ATTEN) #define ANY_RASTER_FLAGS (DD_TRI_LIGHT_TWOSIDE | DD_TRI_OFFSET | DD_TRI_UNFILLED) void @@ -995,11 +995,6 @@ intelChooseRenderState(struct gl_context * ctx) if ((flags & DD_TRI_STIPPLE) && !intel->hw_stipple) intel->draw_tri = intel_fallback_tri; - if (flags & DD_TRI_SMOOTH) { - if (intel->conformance_mode > 0) - intel->draw_tri = intel_fallback_tri; - } - if (flags & DD_POINT_ATTEN) { if (0) intel->draw_point = intel_atten_point; @@ -1007,11 +1002,6 @@ intelChooseRenderState(struct gl_context * ctx) intel->draw_point = intel_fallback_point; } - if (flags & DD_POINT_SMOOTH) { - if (intel->conformance_mode > 0) - intel->draw_point = intel_fallback_point; - } - index |= INTEL_FALLBACK_BIT; } } |