From: Emil Velikov Date: Mon, 14 Sep 2015 17:35:48 +0000 (+0100) Subject: mesa: enable KHR_debug for ES contexts X-Git-Tag: upstream/17.1.0~15536 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b69cfbdf18fa64606a76761b20bc268f4ac731e5;p=platform%2Fupstream%2Fmesa.git mesa: enable KHR_debug for ES contexts Signed-off-by: Emil Velikov --- diff --git a/docs/relnotes/11.1.0.html b/docs/relnotes/11.1.0.html index c755c98..88c34dd 100644 --- a/docs/relnotes/11.1.0.html +++ b/docs/relnotes/11.1.0.html @@ -45,11 +45,12 @@ Note: some of the new features are only available with certain drivers.

Bug fixes

diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b2c88c3..281c640 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 },