Convert libGL and DRI drivers to require libdrm.
[mesa-demos.git] / include / GLES / egltypes.h
blob65cba8d57930e0aea5da07fd9266fb35f50ed9f9
1 /*
2 ** egltypes.h for Mesa
3 **
4 ** ONLY egl.h SHOULD INCLUDE THIS FILE!
5 **
6 ** See comments about egltypes.h in the standard egl.h file.
7 */
10 #include <sys/types.h>
14 ** These opaque EGL types are implemented as unsigned 32-bit integers:
16 typedef u_int32_t EGLDisplay;
17 typedef u_int32_t EGLConfig;
18 typedef u_int32_t EGLSurface;
19 typedef u_int32_t EGLContext;
21 /* EGL_MESA_screen_surface */
22 typedef u_int32_t EGLModeMESA;
23 typedef u_int32_t EGLScreenMESA;
27 ** Other basic EGL types:
29 typedef u_int8_t EGLBoolean;
30 typedef int32_t EGLint;
32 typedef void * NativeDisplayType;
33 typedef int NativePixmapType;
34 typedef int NativeWindowType;
37 ** EGL and native handle null values:
39 #define EGL_DEFAULT_DISPLAY ((NativeDisplayType) 0)
40 #define EGL_NO_CONTEXT ((EGLContext) 0)
41 #define EGL_NO_DISPLAY ((EGLDisplay) 0)
42 #define EGL_NO_SURFACE ((EGLSurface) 0)
44 /* EGL_MESA_screen_surface */
45 #define EGL_NO_MODE_MESA ((EGLModeMESA) 0)