From 0f0922f93cbe997a95575c955ab1544bb5cd1d7d Mon Sep 17 00:00:00 2001 From: Matthieu Herrb Date: Sat, 11 Oct 2008 08:51:43 +0200 Subject: Big endian fixes. --- src/mesa/main/glheader.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/glheader.h') diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index 1d0f178dc4..626806d35f 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -146,7 +146,8 @@ #include #define CPU_TO_LE32( x ) bswap_32( x ) #else /*__linux__*/ -#define CPU_TO_LE32( x ) ( x ) /* fix me for non-Linux big-endian! */ +#include +#define CPU_TO_LE32( x ) bswap32( x ) #endif /*__linux__*/ #define MESA_BIG_ENDIAN 1 #else -- cgit v1.2.3