aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorSimon Zeni <simon@bl4ckb0ne.ca>2021-01-07 00:11:48 -0500
committerSimon Ser <contact@emersion.fr>2021-01-07 17:11:22 +0100
commit9192c0480a9bfb5603ea6b7891829a3140acc6fe (patch)
tree3eb2a4200d2b6026cdd444230857eadbd2bfea6b /include/wlr
parentb899a412e3eb7be76df495883de9aa2bdb3be06f (diff)
remove unnecessary egl includes
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/backend.h1
-rw-r--r--include/wlr/backend/interface.h1
-rw-r--r--include/wlr/render/interface.h12
3 files changed, 0 insertions, 14 deletions
diff --git a/include/wlr/backend.h b/include/wlr/backend.h
index edccc665..2b869f28 100644
--- a/include/wlr/backend.h
+++ b/include/wlr/backend.h
@@ -11,7 +11,6 @@
#include <wayland-server-core.h>
#include <wlr/backend/session.h>
-#include <wlr/render/egl.h>
struct wlr_backend_impl;
diff --git a/include/wlr/backend/interface.h b/include/wlr/backend/interface.h
index 4a6a5cbb..8782ae0b 100644
--- a/include/wlr/backend/interface.h
+++ b/include/wlr/backend/interface.h
@@ -12,7 +12,6 @@
#include <stdbool.h>
#include <time.h>
#include <wlr/backend.h>
-#include <wlr/render/egl.h>
struct wlr_backend_impl {
bool (*start)(struct wlr_backend *backend);
diff --git a/include/wlr/render/interface.h b/include/wlr/render/interface.h
index 3ce91d32..feca44e1 100644
--- a/include/wlr/render/interface.h
+++ b/include/wlr/render/interface.h
@@ -9,18 +9,6 @@
#ifndef WLR_RENDER_INTERFACE_H
#define WLR_RENDER_INTERFACE_H
-#ifndef MESA_EGL_NO_X11_HEADERS
-#define MESA_EGL_NO_X11_HEADERS
-#endif
-#ifndef EGL_NO_X11
-#define EGL_NO_X11
-#endif
-#ifndef EGL_NO_PLATFORM_SPECIFIC_TYPES
-#define EGL_NO_PLATFORM_SPECIFIC_TYPES
-#endif
-
-#include <EGL/egl.h>
-#include <EGL/eglext.h>
#include <stdbool.h>
#include <wayland-server-protocol.h>
#include <wlr/render/wlr_renderer.h>