Module: Mesa
Branch: master
Commit: 093ad509fcee5cb3a890663fc80ed671dcaf4000
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=093ad509fcee5cb3a890663fc80ed671dcaf4000

Author: Jeremy Huddleston <[email protected]>
Date:   Tue Mar 31 15:08:49 2009 -0700

Updated CPU_TO_LE32 to work on darwin

---

 src/mesa/main/compiler.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 39b19bb..93103fe 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -230,7 +230,10 @@ extern "C" {
 #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__*/

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to