diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2022-07-30 17:44:16 +0800 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-08-09 21:02:50 +0000 |
commit | f5bb9dd738ace274c97507adea073b6c609469b2 (patch) | |
tree | 55b1205d2788924fb7c42dff2fe1efcb14257440 /bin | |
parent | 3a9d3ac9c1c3a3df0cf4135f3c18efede46446b4 (diff) | |
download | mesa-f5bb9dd738ace274c97507adea073b6c609469b2.tar.gz mesa-f5bb9dd738ace274c97507adea073b6c609469b2.tar.bz2 mesa-f5bb9dd738ace274c97507adea073b6c609469b2.zip |
egl: Remove eglextchromium.h and import eglext_angle.h
The upstream eglextchromium.h in https://chromium.googlesource.com/chromium/src/+/refs/heads/master/ui/gl/EGL/eglextchromium.h
are broken, so remove it and using eglext_angle.h instead.
By running "python bin/khronos-update.py egl" to update EGL files,
then discard changes other than eglext_angle.h
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17815>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/khronos-update.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/khronos-update.py b/bin/khronos-update.py index 63aeb87ddf7..09df314102d 100755 --- a/bin/khronos-update.py +++ b/bin/khronos-update.py @@ -59,8 +59,7 @@ SOURCES = [ Source('include/EGL/egl.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/egl.h'), Source('include/EGL/eglplatform.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/eglplatform.h'), Source('include/EGL/eglext.h', 'https://github.com/KhronosGroup/EGL-Registry/raw/main/api/EGL/eglext.h'), - Source('include/EGL/eglextchromium.h', 'https://chromium.googlesource.com/chromium/src/+/refs/heads/master/ui/gl/EGL/eglextchromium.h?format=TEXT'), - Source('include/EGL/eglext_angle.h', 'https://chromium.googlesource.com/angle/angle/+/refs/heads/master/include/EGL/eglext_angle.h?format=TEXT'), + Source('include/EGL/eglext_angle.h', 'https://chromium.googlesource.com/angle/angle/+/refs/heads/main/include/EGL/eglext_angle.h?format=TEXT'), Source('include/EGL/eglmesaext.h', None), ], }, |