projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6af2e3
)
s/GLuint/unsigned/
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 27 May 2008 19:47:44 +0000
(13:47 -0600)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 27 May 2008 19:47:44 +0000
(13:47 -0600)
src/egl/drivers/demo/demo.c
patch
|
blob
|
history
diff --git
a/src/egl/drivers/demo/demo.c
b/src/egl/drivers/demo/demo.c
index 45545755c00edfda83c95b35d475ea29946e9e0b..0a13de6d875dfc29552cedb03f20ac2e9cfa1547 100644
(file)
--- 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;