projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ef61b9
)
gallium: s/GLuint/unsigned/ to work with gallium when THREADS not defined
author
Brian
<brian.paul@tungstengraphics.com>
Sat, 26 Jan 2008 23:05:35 +0000
(16:05 -0700)
committer
Brian
<brian.paul@tungstengraphics.com>
Sat, 26 Jan 2008 23:05:35 +0000
(16:05 -0700)
src/mesa/glapi/glthread.h
patch
|
blob
|
history
diff --git
a/src/mesa/glapi/glthread.h
b/src/mesa/glapi/glthread.h
index
a61086d
..
afb04f7
100644
(file)
--- a/
src/mesa/glapi/glthread.h
+++ b/
src/mesa/glapi/glthread.h
@@
-259,11
+259,11
@@
typedef benaphore _glthread_Mutex;
* THREADS not defined
*/
-typedef
GLuint
_glthread_TSD;
+typedef
unsigned
_glthread_TSD;
-typedef
GLuint
_glthread_Thread;
+typedef
unsigned
_glthread_Thread;
-typedef
GLuint
_glthread_Mutex;
+typedef
unsigned
_glthread_Mutex;
#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0