1 /* 2 ** Types and resources 3 */ 4 typedef int EGLBoolean; 5 typedef long EGLint; 6 typedef void *EGLDisplay; 7 typedef void *EGLConfig; 8 typedef void *EGLSurface; 9 typedef void *EGLContext; 10 typedef void *NativeDisplayType; 11 typedef void *NativeWindowType; 12 typedef void *NativePixmapType; 13 14 /* 15 ** EGL and native handle values 16 */ 17 #define EGL_DEFAULT_DISPLAY ((NativeDisplayType)0) 18 #define EGL_NO_CONTEXT ((EGLContext)0) 19 #define EGL_NO_DISPLAY ((EGLDisplay)0) 20 #define EGL_NO_SURFACE ((EGLSurface)0) 21