From 4c035706dc3213d835dbd592655db14732296067 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 26 Mar 2014 13:11:29 -0700 Subject: mapi_abi: Remove ABI-check work arounds for functions that are no longer exported The previous commit stopped exporting 21 libGLESv2 and 88 libGLESv1_CM functions. This removes the work-arounds for those functions from ABI-check. Signed-off-by: Ian Romanick Reviewed-by: Matt Turner Acked-by: Chad Versace --- src/mapi/es2api/ABI-check | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'src/mapi/es2api') diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check index 4a61050..abbb55c 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -2,16 +2,8 @@ # Print defined gl.* functions not in GL ES 3.0 or in # (FIXME, none of these should be part of the ABI) -# GL_EXT_discard_framebuffer -# GL_EXT_map_buffer_range # GL_EXT_multi_draw_arrays -# GL_NV_draw_buffers -# GL_NV_read_buffer # GL_OES_EGL_image -# GL_OES_get_program_binary -# GL_OES_mapbuffer -# GL_OES_texture_3D -# GL_OES_vertex_array_object FUNCS=$(nm -D --defined-only ${1-.libs/libGLESv2.so.2} | grep -o 'T gl.*' | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <