summaryrefslogtreecommitdiff
path: root/include/GLES
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-09-20 07:32:30 -0700
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-21 09:45:00 -0700
commit5a46e176715b0eae7b8a715e8aec42f5a27214fc (patch)
tree6f8c89c2744f6092a371bbdcdf0a1b9f68124571 /include/GLES
parent3474e9de924d92a941b4ea33ecc694f5fad2651f (diff)
mesa: standardize on C99's uint*_t instead of u_int*_t
Diffstat (limited to 'include/GLES')
-rw-r--r--include/GLES/egltypes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/GLES/egltypes.h b/include/GLES/egltypes.h
index 65cba8d579..6e98265043 100644
--- a/include/GLES/egltypes.h
+++ b/include/GLES/egltypes.h
@@ -13,20 +13,20 @@
/*
** These opaque EGL types are implemented as unsigned 32-bit integers:
*/
-typedef u_int32_t EGLDisplay;
-typedef u_int32_t EGLConfig;
-typedef u_int32_t EGLSurface;
-typedef u_int32_t EGLContext;
+typedef uint32_t EGLDisplay;
+typedef uint32_t EGLConfig;
+typedef uint32_t EGLSurface;
+typedef uint32_t EGLContext;
/* EGL_MESA_screen_surface */
-typedef u_int32_t EGLModeMESA;
-typedef u_int32_t EGLScreenMESA;
+typedef uint32_t EGLModeMESA;
+typedef uint32_t EGLScreenMESA;
/*
** Other basic EGL types:
*/
-typedef u_int8_t EGLBoolean;
+typedef uint8_t EGLBoolean;
typedef int32_t EGLint;
typedef void * NativeDisplayType;