summaryrefslogtreecommitdiff
path: root/include/EGL
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-06-19 00:21:39 +0800
committerChia-I Wu <olv@lunarg.com>2010-06-23 15:15:00 +0800
commit985c2fca10b9338ef894cf8d34877dfbe7468e6e (patch)
tree1a508cd4ef4712bcd1d8b2a9606cb0a01aef664c /include/EGL
parent78d70ddbbd41d73b7f6040f392eb87758c39dc37 (diff)
egl: Add a test for MESA_EGL_NO_X11_HEADERS.
When the macro is defined, X11 headers will not be included.
Diffstat (limited to 'include/EGL')
-rw-r--r--include/EGL/eglplatform.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/EGL/eglplatform.h b/include/EGL/eglplatform.h
index c625088d6cb..33a3e5f8891 100644
--- a/include/EGL/eglplatform.h
+++ b/include/EGL/eglplatform.h
@@ -80,6 +80,14 @@ typedef void *EGLNativePixmapType;
#elif defined(__unix__) || defined(__unix)
+#ifdef MESA_EGL_NO_X11_HEADERS
+
+typedef void *EGLNativeDisplayType;
+typedef khronos_uint32_t EGLNativePixmapType;
+typedef khronos_uint32_t EGLNativeWindowType;
+
+#else
+
/* X11 (tentative) */
#include <X11/Xlib.h>
#include <X11/Xutil.h>
@@ -88,6 +96,8 @@ typedef Display *EGLNativeDisplayType;
typedef Pixmap EGLNativePixmapType;
typedef Window EGLNativeWindowType;
+#endif /* MESA_EGL_NO_X11_HEADERS */
+
#else
#error "Platform not recognized"
#endif