summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2015-05-19 15:41:28 -0700
committerNanley Chery <nanley.g.chery@intel.com>2015-08-26 14:36:42 -0700
commit4143511b15e8f1d63176257ae8a83b4906e3204c (patch)
treed5af28ec728aca60119df4495cc435d1ce3b0600 /src/mesa/main/extensions.c
parent582ce1ea976a16aa8f32ff72cb2fecb00186e253 (diff)
downloadexternal_mesa3d-4143511b15e8f1d63176257ae8a83b4906e3204c.zip
external_mesa3d-4143511b15e8f1d63176257ae8a83b4906e3204c.tar.gz
external_mesa3d-4143511b15e8f1d63176257ae8a83b4906e3204c.tar.bz2
mesa: add ASTC extensions to the extensions table
v2: alphabetize the extensions. remove OES ASTC extension. Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Signed-off-by: Nanley Chery <nanley.g.chery@intel.com>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r--src/mesa/main/extensions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index 4a3c231..03303ac 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -342,6 +342,8 @@ static const struct extension extension_table[] = {
/* KHR extensions */
{ "GL_KHR_debug", o(dummy_true), GL, 2012 },
{ "GL_KHR_context_flush_control", o(dummy_true), GL | ES2, 2014 },
+ { "GL_KHR_texture_compression_astc_hdr", o(KHR_texture_compression_astc_hdr), GL | ES2, 2012 },
+ { "GL_KHR_texture_compression_astc_ldr", o(KHR_texture_compression_astc_ldr), GL | ES2, 2012 },
/* Vendor extensions */
{ "GL_3DFX_texture_compression_FXT1", o(TDFX_texture_compression_FXT1), GL, 1999 },