From: Kenneth Graunke Date: Fri, 21 Jun 2013 22:33:45 +0000 (-0700) Subject: i965: Remove hw_stipple flag. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4299e3588811d71301f17a1d7edaa0df7e2e615a;p=mesa.git i965: Remove hw_stipple flag. This was only used by i915. Acked-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c index f500c083f59..0761e861065 100644 --- a/src/mesa/drivers/dri/i965/intel_context.c +++ b/src/mesa/drivers/dri/i965/intel_context.c @@ -613,7 +613,6 @@ intelInitContext(struct intel_context *intel, _mesa_meta_init(ctx); intel->hw_stencil = mesaVis->stencilBits && mesaVis->depthBits == 24; - intel->hw_stipple = 1; intelInitExtensions(ctx); diff --git a/src/mesa/drivers/dri/i965/intel_context.h b/src/mesa/drivers/dri/i965/intel_context.h index 5a4209fb3d2..97685ce6265 100644 --- a/src/mesa/drivers/dri/i965/intel_context.h +++ b/src/mesa/drivers/dri/i965/intel_context.h @@ -225,7 +225,6 @@ struct intel_context GLuint stats_wm; bool hw_stencil; - bool hw_stipple; bool no_rast; bool always_flush_batch; bool always_flush_cache;