summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-05-27 13:47:44 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-05-27 13:47:44 -0600
commitfcce6c068cf53fd394a2c82080338860dae8777b (patch)
treeae1b4ab2f3f5f34d72a38eff48f3b8890291be61 /src
parenta6af2e3345a23e66385433b066329f77ec69abcb (diff)
s/GLuint/unsigned/
Diffstat (limited to 'src')
-rw-r--r--src/egl/drivers/demo/demo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/drivers/demo/demo.c b/src/egl/drivers/demo/demo.c
index 45545755c0..0a13de6d87 100644
--- a/src/egl/drivers/demo/demo.c
+++ b/src/egl/drivers/demo/demo.c
@@ -21,7 +21,7 @@
typedef struct demo_driver
{
_EGLDriver Base; /* base class/object */
- GLuint DemoStuff;
+ unsigned DemoStuff;
} DemoDriver;
#define DEMO_DRIVER(D) ((DemoDriver *) (D))
@@ -33,7 +33,7 @@ typedef struct demo_driver
typedef struct demo_surface
{
_EGLSurface Base; /* base class/object */
- GLuint DemoStuff;
+ unsigned DemoStuff;
} DemoSurface;
@@ -43,7 +43,7 @@ typedef struct demo_surface
typedef struct demo_context
{
_EGLContext Base; /* base class/object */
- GLuint DemoStuff;
+ unsigned DemoStuff;
} DemoContext;