From 2adfce4a18c8f97b9f3fc4568c5a4e10ce18a8f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 10 Jul 2012 23:15:28 -0400 Subject: [PATCH] mapi: Move GL_NV_draw_buffers extension to es_EXT.xml MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We don't generate public entrypoints for GLES extensions, so move the GL_NV_draw_buffers definition from ARB_draw_buffers.xml to es_EXT.xml. When the extension is defined in ARB_draw_buffers.xml, we end up with a public entry point for it, but no prototype, which gives an error when compiled with --disable-asm and --disable-shared-glapi. Instead, just move the GLES extension to es_EXT.xml so this doesn't happen. Signed-off-by: Kristian Høgsberg --- src/mapi/glapi/gen/ARB_draw_buffers.xml | 63 ------------------------- src/mapi/glapi/gen/es_EXT.xml | 63 +++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 63 deletions(-) diff --git a/src/mapi/glapi/gen/ARB_draw_buffers.xml b/src/mapi/glapi/gen/ARB_draw_buffers.xml index f8ecc11eef7..3d47172673a 100644 --- a/src/mapi/glapi/gen/ARB_draw_buffers.xml +++ b/src/mapi/glapi/gen/ARB_draw_buffers.xml @@ -121,67 +121,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml index ad83d9142d1..d012ccd5bf3 100644 --- a/src/mapi/glapi/gen/es_EXT.xml +++ b/src/mapi/glapi/gen/es_EXT.xml @@ -627,6 +627,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.30.2