summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-17 11:39:45 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-08-17 11:39:45 -0600
commit2fc54f5bb56a7714c843fc5a6a3bb6895af9babc (patch)
treeada1f034b62f9e97bad33a68aeff574e6a1f1b8b /src/mesa
parent89cda7bdc85b10526987321214965f21b148735f (diff)
added uint64 type
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/pipe/p_compiler.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/mesa/pipe/p_compiler.h b/src/mesa/pipe/p_compiler.h
index 4f968404eb..d139cb1844 100644
--- 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__