summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-09-25 16:02:15 +0200
committerwm4 <wm4@nowhere>2015-09-25 16:02:15 +0200
commitd2281935b36b8fe80824b92e6238dc5e4b4e315a (patch)
tree0feb8c401d266406771df7d430ad7feb67f86a8c /video
parent0a6c334b592d4fd5e61addb9ba28b1182aecb6d9 (diff)
downloadmpv-d2281935b36b8fe80824b92e6238dc5e4b4e315a.tar.bz2
mpv-d2281935b36b8fe80824b92e6238dc5e4b4e315a.tar.xz
vo_rpi, wayland: fix build
Broken by commit d47dff3f. If something is going to include EGL.h, header_fixes.h has to know. This definitely affected vo_rpi, and probably affects wayland builds (with x11egl didabled) as well.
Diffstat (limited to 'video')
-rw-r--r--video/out/opengl/rpi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/opengl/rpi.h b/video/out/opengl/rpi.h
index e00762b632..5ce893e9e3 100644
--- a/video/out/opengl/rpi.h
+++ b/video/out/opengl/rpi.h
@@ -1,6 +1,6 @@
#include <bcm_host.h>
-#include <EGL/egl.h>
-#include <EGL/eglext.h>
+
+#include "common.h"
struct mp_egl_rpi {
struct mp_log *log;