From: Brian Date: Fri, 17 Aug 2007 17:39:45 +0000 (-0600) Subject: added uint64 type X-Git-Tag: android-x86-1.6~16^2~1465^2~390^2~4267 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2fc54f5bb56a7714c843fc5a6a3bb6895af9babc;p=android-x86%2Fexternal-mesa.git added uint64 type --- diff --git a/src/mesa/pipe/p_compiler.h b/src/mesa/pipe/p_compiler.h index 4f968404eb9..d139cb18449 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__