diff options
author | Simon Ser <contact@emersion.fr> | 2020-05-25 17:02:38 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-11-19 00:42:09 +0100 |
commit | e18599b05e0f0cbeba11adbd489e801285470eab (patch) | |
tree | 9c70dd912f42743b6fd43177990d6107ed1498cd /include | |
parent | 526ae5944c5cc97e02f0282c57ce7320ceb2daa5 (diff) |
render/egl: stop including eglmesaext.h
This is a Mesa-specific header that was needed because some Wayland EGL
extensions were missing from the Khronos registry. Now that this has
been fixed [1] and Mesa [2] & glvnd [3] have sync'ed their headers, we
can drop this workaround.
[1]: https://github.com/KhronosGroup/EGL-Registry/pull/95
[2]: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4953
[3]: https://gitlab.freedesktop.org/glvnd/libglvnd/-/merge_requests/225
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/config.h.in | 2 | ||||
-rw-r--r-- | include/wlr/render/egl.h | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/include/wlr/config.h.in b/include/wlr/config.h.in index 77a15598..cd42987b 100644 --- a/include/wlr/config.h.in +++ b/include/wlr/config.h.in @@ -1,8 +1,6 @@ #ifndef WLR_CONFIG_H #define WLR_CONFIG_H -#mesondefine WLR_HAS_EGLMESAEXT_H - #mesondefine WLR_HAS_LIBCAP #mesondefine WLR_HAS_SYSTEMD diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h index 48382f6d..46af0cf8 100644 --- a/include/wlr/render/egl.h +++ b/include/wlr/render/egl.h @@ -23,10 +23,6 @@ #include <EGL/egl.h> #include <EGL/eglext.h> -#if WLR_HAS_EGLMESAEXT_H -// TODO: remove eglmesaext.h -#include <EGL/eglmesaext.h> -#endif #include <pixman.h> #include <stdbool.h> #include <wayland-server-core.h> |