diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-08-17 11:39:45 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-08-17 11:39:45 -0600 |
commit | 2fc54f5bb56a7714c843fc5a6a3bb6895af9babc (patch) | |
tree | ada1f034b62f9e97bad33a68aeff574e6a1f1b8b | |
parent | 89cda7bdc85b10526987321214965f21b148735f (diff) |
added uint64 type
-rw-r--r-- | src/mesa/pipe/p_compiler.h | 10 |
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__ |