diff options
author | Kenneth Graunke <[email protected]> | 2013-06-21 15:33:45 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-06-28 13:35:26 -0700 |
commit | 4299e3588811d71301f17a1d7edaa0df7e2e615a (patch) | |
tree | 09ce3aca9f7f9c460230c3a0952e196619c485ad /src/mesa | |
parent | 1a5dca38e945e576b3c043af8f6fa0b999607c6f (diff) |
i965: Remove hw_stipple flag.
This was only used by i915.
Acked-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_context.c | 1 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_context.h | 1 |
2 files changed, 0 insertions, 2 deletions
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; |