s/GLuint/unsigned/

This commit is contained in:
Brian Paul
2008-05-27 13:47:44 -06:00
parent a6af2e3345
commit fcce6c068c
+3 -3
View File
@@ -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;