diff options
author | Ian Romanick <[email protected]> | 2011-08-30 17:55:26 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-29 10:41:01 -0700 |
commit | b0824bd860f6d4b3ad28fc142c2eebd840ed6173 (patch) | |
tree | ec6f962a7a4df50a297bdeec4e8a7f79531aa412 /src/mesa/main/version.c | |
parent | 1d5e49bf05f698374257707e2303b266d2a864da (diff) |
mesa: Remove EXT_blend_subtract extension enable flag
All drivers remaining in Mesa support this extension. This extension
is either required or optional features in desktop OpenGL, OpenGL ES
1.x, and OpenGL ES 2.x.
This extension was previously not supported on i810, mach64, mga,
savage, sis, and tdfx (Voodoo Banshee and Voodoo3).
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/version.c')
-rw-r--r-- | src/mesa/main/version.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c index 586bfd9454e..9c370251731 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -98,7 +98,6 @@ compute_version(struct gl_context *ctx) ctx->Extensions.EXT_blend_color && ctx->Extensions.EXT_blend_func_separate && ctx->Extensions.EXT_blend_minmax && - ctx->Extensions.EXT_blend_subtract && ctx->Extensions.EXT_fog_coord && ctx->Extensions.EXT_point_parameters && ctx->Extensions.EXT_secondary_color); @@ -276,7 +275,6 @@ compute_version_es2(struct gl_context *ctx) ctx->Extensions.EXT_blend_color && ctx->Extensions.EXT_blend_func_separate && ctx->Extensions.EXT_blend_minmax && - ctx->Extensions.EXT_blend_subtract && ctx->Extensions.ARB_shader_objects && ctx->Extensions.ARB_vertex_shader && ctx->Extensions.ARB_fragment_shader && |