OSDN Git Service

mesa: enable KHR_debug for ES contexts
authorEmil Velikov <emil.l.velikov@gmail.com>
Mon, 14 Sep 2015 17:35:48 +0000 (18:35 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Wed, 7 Oct 2015 14:08:50 +0000 (15:08 +0100)
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
docs/relnotes/11.1.0.html
src/mesa/main/extensions.c

index c755c98..88c34dd 100644 (file)
@@ -45,11 +45,12 @@ Note: some of the new features are only available with certain drivers.
 
 <ul>
 <li>GL_ARB_blend_func_extended on freedreno (a3xx)</li>
+<li>GL_ARB_gpu_shader_fp64 on r600 for Cypress/Cayman/Aruba chips</li>
 <li>GL_ARB_shader_storage_buffer_object on i965</li>
 <li>GL_ARB_shader_texture_image_samples on i965, nv50, nvc0, r600, radeonsi</li>
 <li>GL_ARB_texture_barrier / GL_NV_texture_barrier on i965</li>
 <li>GL_ARB_texture_query_lod on softpipe</li>
-<li>GL_ARB_gpu_shader_fp64 on r600 for Cypress/Cayman/Aruba chips</li>
+<li>GL_KHR_debug (GLES)</li>
 </ul>
 
 <h2>Bug fixes</h2>
index b2c88c3..281c640 100644 (file)
@@ -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 },