diff options
author | Jeremy Huddleston <jeremy@yuffie.local> | 2009-03-31 14:59:28 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremy@yuffie.local> | 2009-03-31 14:59:28 -0700 |
commit | 9e9fe51acd296f5d30fe784521464a96d90031d9 (patch) | |
tree | 6502457179d3bfbe8e4ba767303dca5cdd4633f9 /src | |
parent | b65bc1b6cb72df950c2e26446936804dfcdc432c (diff) |
Updated CPU_TO_LE32 to work on darwin
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/glheader.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 626806d35f..d17be3744c 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -145,7 +145,10 @@ #if defined(__linux__) #include <byteswap.h> #define CPU_TO_LE32( x ) bswap_32( x ) -#else /*__linux__*/ +#elif defined(__APPLE__) +#include <CoreFoundation/CFByteOrder.h> +#define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x ) +#else /*__linux__ __APPLE__*/ #include <sys/endian.h> #define CPU_TO_LE32( x ) bswap32( x ) #endif /*__linux__*/ |