diff options
author | Ian Romanick <[email protected]> | 2013-06-27 18:20:30 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-06-28 13:35:22 -0700 |
commit | e6ec425d6eeac95f466174267b2c18c0bffca3f0 (patch) | |
tree | d9218254ef067c7ca3f1b27dca9c60f6a48d6a59 /src/mesa/main/version.c | |
parent | 9bc24b4fc4ee1eda60d4f4bde662f7a1d8474cc1 (diff) |
mesa: GL_ARB_shader_objects is not optional
This extension just provides some of the most basic software framework
for GLSL. Without GL_ARB_vertex_shader or GL_ARB_fragment_shader,
applications still cannot use GLSL. There's no value in
conditionalizing support for this extension.
NOTE: This has the side effect of enabling the extension in the radeon,
r200, and nouveau drivers.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Brian Paul <[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 16185bffc91..1bff19fbd00 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -211,7 +211,6 @@ compute_version(struct gl_context *ctx) ctx->Extensions.EXT_shadow_funcs); const GLboolean ver_2_0 = (ver_1_5 && ctx->Extensions.ARB_point_sprite && - ctx->Extensions.ARB_shader_objects && ctx->Extensions.ARB_vertex_shader && ctx->Extensions.ARB_fragment_shader && ctx->Extensions.ARB_texture_non_power_of_two && @@ -358,7 +357,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.ARB_shader_objects && ctx->Extensions.ARB_vertex_shader && ctx->Extensions.ARB_fragment_shader && ctx->Extensions.ARB_texture_non_power_of_two && |