From: Marek Olšák Date: Wed, 31 Oct 2012 01:04:16 +0000 (+0100) Subject: mesa: move EXT_texture3D enabling to _mesa_init_extensions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6f5c37ac3e8ec3aae39289f94f05cb71a587066;p=mesa.git mesa: move EXT_texture3D enabling to _mesa_init_extensions --- diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b417774710b..142f8652f73 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -357,8 +357,6 @@ name_to_offset(const char* name) * XXX: Should these defaults also apply to GLES? */ static const size_t default_extensions[] = { - o(EXT_texture3D), - o(OES_standard_derivatives), /* Vendor Extensions */ @@ -714,6 +712,7 @@ _mesa_init_extensions( struct gl_context *ctx ) /* Then, selectively turn default extensions on. */ ctx->Extensions.dummy_true = GL_TRUE; + ctx->Extensions.EXT_texture3D = GL_TRUE; for (j = default_extensions; *j != 0; ++j) base[*j] = GL_TRUE; }