diff options
author | Emil Velikov <[email protected]> | 2018-04-10 17:11:29 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-06-21 12:09:39 +0100 |
commit | ccaa9f09cc573f0d9190fa7cdfd66ef066763710 (patch) | |
tree | 99a6c2c4a6cd54edafd066a4045add5e8217dd56 /src/mesa/drivers/dri/i915 | |
parent | 1714dfca8abdae7d6233ddb3b2c852977b20bc42 (diff) |
mesa: remove struct gl_extensions::ATI_separate_stencil
Virtually every driver that supports ATI_separate_stencil
also supports EXT_stencil_two_side.
Use the latter boolean for both extension. With that in mind we can drop
the explicit true from the drivers and the nasty comment in
compute_version().
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_extensions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_extensions.c b/src/mesa/drivers/dri/i915/intel_extensions.c index c3851530139..05ac4874947 100644 --- a/src/mesa/drivers/dri/i915/intel_extensions.c +++ b/src/mesa/drivers/dri/i915/intel_extensions.c @@ -90,7 +90,6 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.EXT_texture_sRGB = true; ctx->Extensions.EXT_texture_sRGB_decode = true; ctx->Extensions.EXT_stencil_two_side = true; - ctx->Extensions.ATI_separate_stencil = true; ctx->Extensions.ATI_texture_env_combine3 = true; ctx->Extensions.NV_texture_env_combine4 = true; |