aboutsummaryrefslogtreecommitdiff
path: root/mesalib/include/GLES/egltypes.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-11-22 19:42:40 +0000
committermarha <marha@users.sourceforge.net>2010-11-22 19:42:40 +0000
commit85ef9930f56bf15181f9a0b238f03d55303cf411 (patch)
tree63b43286956ebd1c35c96e9b3d5305aabdf71a0f /mesalib/include/GLES/egltypes.h
parent94810d19989336862251dbf69c3f3acb18a9b06d (diff)
downloadvcxsrv-85ef9930f56bf15181f9a0b238f03d55303cf411.tar.gz
vcxsrv-85ef9930f56bf15181f9a0b238f03d55303cf411.tar.bz2
vcxsrv-85ef9930f56bf15181f9a0b238f03d55303cf411.zip
Updated to mesalib 7.9
Diffstat (limited to 'mesalib/include/GLES/egltypes.h')
-rw-r--r--mesalib/include/GLES/egltypes.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/mesalib/include/GLES/egltypes.h b/mesalib/include/GLES/egltypes.h
deleted file mode 100644
index 6e9826504..000000000
--- a/mesalib/include/GLES/egltypes.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-** egltypes.h for Mesa
-**
-** ONLY egl.h SHOULD INCLUDE THIS FILE!
-**
-** See comments about egltypes.h in the standard egl.h file.
-*/
-
-
-#include <sys/types.h>
-
-
-/*
-** These opaque EGL types are implemented as unsigned 32-bit integers:
-*/
-typedef uint32_t EGLDisplay;
-typedef uint32_t EGLConfig;
-typedef uint32_t EGLSurface;
-typedef uint32_t EGLContext;
-
-/* EGL_MESA_screen_surface */
-typedef uint32_t EGLModeMESA;
-typedef uint32_t EGLScreenMESA;
-
-
-/*
-** Other basic EGL types:
-*/
-typedef uint8_t EGLBoolean;
-typedef int32_t EGLint;
-
-typedef void * NativeDisplayType;
-typedef int NativePixmapType;
-typedef int NativeWindowType;
-
-/*
-** EGL and native handle null values:
-*/
-#define EGL_DEFAULT_DISPLAY ((NativeDisplayType) 0)
-#define EGL_NO_CONTEXT ((EGLContext) 0)
-#define EGL_NO_DISPLAY ((EGLDisplay) 0)
-#define EGL_NO_SURFACE ((EGLSurface) 0)
-
-/* EGL_MESA_screen_surface */
-#define EGL_NO_MODE_MESA ((EGLModeMESA) 0)