mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-29 05:40:16 -04:00
17 lines
336 B
Text
17 lines
336 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
FUNCS=$(nm -D --defined-only ${1-.libs/libwayland-egl.so} | grep -o "T .*" | cut -c 3- | while read func; do
|
||
|
|
( grep -q "^$func$" || echo $func ) <<EOF
|
||
|
|
wl_egl_window_resize
|
||
|
|
wl_egl_window_create
|
||
|
|
wl_egl_window_destroy
|
||
|
|
wl_egl_window_get_attached_size
|
||
|
|
_fini
|
||
|
|
_init
|
||
|
|
EOF
|
||
|
|
done)
|
||
|
|
|
||
|
|
test ! -n "$FUNCS" || echo $FUNCS
|
||
|
|
test ! -n "$FUNCS"
|
||
|
|
|