#!/bin/bash # Print defined gl.* functions not in GLX 1.4 + OpenGL 1.2 + ARB_multitexture nm -D --defined-only ${1-/usr/lib/libGL.so.1} | grep -o 'T gl.*' | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <