aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2015-09-14 18:35:48 +0100
committerEmil Velikov <[email protected]>2015-10-07 15:08:50 +0100
commitb69cfbdf18fa64606a76761b20bc268f4ac731e5 (patch)
treed77d71cab138dda37c217554d6bff45f219a07c5 /src
parent70643a1389179c214b454a6a49e9f47a768ba904 (diff)
mesa: enable KHR_debug for ES contexts
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/extensions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index b2c88c37366..281c640901e 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -342,7 +342,7 @@ static const struct extension extension_table[] = {
{ "GL_OES_vertex_array_object", o(dummy_true), ES1 | ES2, 2010 },
/* KHR extensions */
- { "GL_KHR_debug", o(dummy_true), GL, 2012 },
+ { "GL_KHR_debug", o(dummy_true), GL | ES1 | ES2, 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 },