projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89cda7b
)
added uint64 type
author
Brian
<brian.paul@tungstengraphics.com>
Fri, 17 Aug 2007 17:39:45 +0000
(11:39 -0600)
committer
Brian
<brian.paul@tungstengraphics.com>
Fri, 17 Aug 2007 17:39:45 +0000
(11:39 -0600)
src/mesa/pipe/p_compiler.h
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/p_compiler.h
b/src/mesa/pipe/p_compiler.h
index 4f968404eb902eeec303f4c246d721c4119c23a5..d139cb1844986cc4e4a92325701c74555a55757e 100644
(file)
--- a/
src/mesa/pipe/p_compiler.h
+++ b/
src/mesa/pipe/p_compiler.h
@@
-39,15
+39,17
@@
#endif
-typedef unsigned int uint;
-typedef unsigned char ubyte;
-typedef unsigned char boolean;
-typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned char ubyte;
+typedef unsigned char boolean;
+typedef unsigned short ushort;
+typedef unsigned long long uint64;
#define TRUE 1
#define FALSE 0
+
/* Function inlining */
#if defined(__GNUC__)
# define INLINE __inline__