diff options
author | Ian Romanick <[email protected]> | 2011-10-02 15:22:18 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-10-04 12:25:58 -0700 |
commit | 763b00f2c596e167299e81684763b52422956dfc (patch) | |
tree | cfd9f773a74a8637ad73f1fb933b7b9db3ed05fe /src/mesa/main/version.c | |
parent | a92f02d04ad011e71595f57c310fca2f3a8ce4ec (diff) |
mesa: Remove ARB_draw_buffers extension enable flag
All drivers in Mesa have supported this extension for eons. This
extension is an optional features in desktop OpenGL (via
GL_ARB_draw_buffers) and OpenGL ES 2.x (via GL_NV_draw_buffers).
The extension is not usable in OpenGL ES 1.x. There is no
glDrawBuffers* entry point in OpenGL ES 1.x contexts, and glGet*v
generate errors when MAX_DRAW_BUFFERS or DRAW_BUFFERi is queried.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/version.c')
-rw-r--r-- | src/mesa/main/version.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c index a996c145b88..17c06005937 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -104,7 +104,6 @@ compute_version(struct gl_context *ctx) ctx->Extensions.ARB_occlusion_query && ctx->Extensions.EXT_shadow_funcs); const GLboolean ver_2_0 = (ver_1_5 && - ctx->Extensions.ARB_draw_buffers && ctx->Extensions.ARB_point_sprite && ctx->Extensions.ARB_shader_objects && ctx->Extensions.ARB_vertex_shader && |