mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-03-23 05:35:51 -04:00
Inspired by Heiko Becker and Eric's work in libdrm and Mesa respectively. Cc: Eric Engestrom <eric.engestrom@imgtec.com> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Daniel Stone <daniels@collabora.com>
16 lines
327 B
Bash
Executable file
16 lines
327 B
Bash
Executable file
#!/bin/sh
|
|
|
|
FUNCS=$($NM -D --defined-only ${WAYLAND_EGL_LIB} | 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"
|
|
|