#!/bin/sh set -eu # Print defined gl.* functions not in GL ES 3.0 or in # (FIXME, none of these should be part of the ABI) # GL_EXT_multi_draw_arrays # GL_OES_EGL_image if [ $(uname) == "Darwin" ] then LIB=${1-es2api/.libs/libGLESv2.dylib} else LIB=${1-es2api/.libs/libGLESv2.so.2} fi 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 ) <