diff options
author | Marek Olšák <[email protected]> | 2012-01-12 03:54:09 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-01-15 07:29:48 +0100 |
commit | 5596db74117e56a58e16a61c34bc87d787bb24bb (patch) | |
tree | 4a7d16d9ef365e5f9ff31751ba22534227a7cd6e | |
parent | 2449695e822421fdcaf1c66dffc12d7d705ea69d (diff) |
mesa: update compute_version for GL3
only check ARB_fbo, add shader_texture_lod as a requirement
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/mesa/main/version.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c index 49cdc308805..38ae1ce8508 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -130,16 +130,14 @@ compute_version(struct gl_context *ctx) ctx->Extensions.ARB_half_float_pixel && ctx->Extensions.ARB_half_float_vertex && ctx->Extensions.ARB_map_buffer_range && + ctx->Extensions.ARB_shader_texture_lod && ctx->Extensions.ARB_texture_float && ctx->Extensions.ARB_texture_rg && ctx->Extensions.ARB_texture_compression_rgtc && ctx->Extensions.APPLE_vertex_array_object && ctx->Extensions.EXT_draw_buffers2 && - ctx->Extensions.EXT_framebuffer_blit && - ctx->Extensions.EXT_framebuffer_multisample && - ctx->Extensions.EXT_framebuffer_object && + ctx->Extensions.ARB_framebuffer_object && ctx->Extensions.EXT_framebuffer_sRGB && - ctx->Extensions.EXT_packed_depth_stencil && ctx->Extensions.EXT_packed_float && ctx->Extensions.EXT_texture_array && ctx->Extensions.EXT_texture_integer && |