Commit e16ac8b5 authored by Thiago Macieira's avatar Thiago Macieira
Browse files

Fix build with Mesa EGL


Mesa EGL headers include X11 headers, which may #define Bool.

Change-Id: I17379c24bfb7bac809b92f4c2a41298de00a972c
Reviewed-by: default avatarAndrew den Exter <andrew.den.exter@qinetic.com.au>
parent 35df77c8
No related merge requests found
Showing with 4 additions and 0 deletions
......@@ -50,6 +50,10 @@
#include <EGL/egl.h>
#include <EGL/eglext.h>
#ifdef Bool
# undef Bool
#endif
QT_BEGIN_NAMESPACE
class QSGVideoMaterial_EGL : public QSGMaterial
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment