From: Dylan Baker Date: Tue, 31 Oct 2017 18:49:07 +0000 (-0700) Subject: es2api/ABI-check: Add es3.x symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ff6187b84d2b08ffbd75fa2c9fcd11b9628b8a7;p=mesa.git es2api/ABI-check: Add es3.x symbols Currently this ABI check only checks for es2 symbols, but es3.x symbols are also exposed. Exposing these symbols is recommended by Khronos, and as such the test should accept that as ABI. see: https://lists.freedesktop.org/archives/mesa-stable/2016-June/004545.html for the discussion about exposing these symbols cc: Ian Romanick Signed-off-by: Dylan Baker Tested-by: Eric Engestrom Tested-by: Michel Dänzer --- diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check index 835882c954a..179bea132e3 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -15,6 +15,7 @@ fi FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <