From 6f305d0c617d9bcfd7446554bc2ae8691b5b4d7a Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 11 Oct 2018 14:46:34 +0100 Subject: [PATCH] gles: use new symbols check script Signed-off-by: Eric Engestrom Reviewed-by Dylan Baker Reviewed-by: Emil Velikov --- src/mapi/es1api/{ABI-check => gles1-symbols.txt} | 29 +----------------------- src/mapi/es1api/meson.build | 9 +++++--- src/mapi/es2api/{ABI-check => gles2-symbols.txt} | 29 +----------------------- src/mapi/es2api/meson.build | 9 +++++--- 4 files changed, 14 insertions(+), 62 deletions(-) rename src/mapi/es1api/{ABI-check => gles1-symbols.txt} (81%) mode change 100755 => 100644 rename src/mapi/es2api/{ABI-check => gles2-symbols.txt} (93%) mode change 100755 => 100644 diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/gles1-symbols.txt old mode 100755 new mode 100644 similarity index 81% rename from src/mapi/es1api/ABI-check rename to src/mapi/es1api/gles1-symbols.txt index e9a2cb2..935b9d5 --- a/src/mapi/es1api/ABI-check +++ b/src/mapi/es1api/gles1-symbols.txt @@ -1,29 +1,7 @@ -#!/bin/sh -set -eu - -# Print defined gl.* functions not in GL ES 1.1 +# gl.* functions in GL ES 1.1 # or in extensions that are part of the ES 1.1 extension pack. # (see http://www.khronos.org/registry/gles/specs/1.1/opengles_spec_1_1_extension_pack.pdf) -case "$(uname)" in -Darwin) - LIB=${1-es1api/.libs/libGLESv1_CM.dylib} - ;; -CYGWIN*) - LIB=${1-es1api/.libs/cygGLESv1_CM-1.dll} - ;; -*) - LIB=${1-es1api/.libs/libGLESv1_CM.so.1} - ;; -esac - -if ! [ -f "$LIB" ] -then - exit 1 -fi - -FUNCS=$($NM -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do -( grep -q "^$func$" || echo $func ) <