summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress_fxt1.c
diff options
context:
space:
mode:
authorZhang <zxpmyth@yahoo.com.cn>2007-07-21 11:28:06 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-21 11:28:06 -0600
commit76fb8089103e9dba9aaa7232c86d864d5874a08f (patch)
tree1baf4612b24db10a597542b4fcdc33f8cc14ed6d /src/mesa/main/texcompress_fxt1.c
parentaf2aa8e9cf88a9ee3ec338eddc9a47bf2f142cb7 (diff)
downloadexternal_mesa3d-76fb8089103e9dba9aaa7232c86d864d5874a08f.zip
external_mesa3d-76fb8089103e9dba9aaa7232c86d864d5874a08f.tar.gz
external_mesa3d-76fb8089103e9dba9aaa7232c86d864d5874a08f.tar.bz2
Fix a number of MINGW32 issues
Diffstat (limited to 'src/mesa/main/texcompress_fxt1.c')
-rw-r--r--src/mesa/main/texcompress_fxt1.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/texcompress_fxt1.c b/src/mesa/main/texcompress_fxt1.c
index 411d51c..b6991f4 100644
--- a/src/mesa/main/texcompress_fxt1.c
+++ b/src/mesa/main/texcompress_fxt1.c
@@ -302,7 +302,12 @@ const struct gl_texture_format _mesa_texformat_rgba_fxt1 = {
#define FX64_NATIVE 1
+#ifdef __MINGW32__
+typedef unsigned long Fx64;
+#else
typedef unsigned long long Fx64;
+#endif
+
#define FX64_MOV32(a, b) a = b
#define FX64_OR32(a, b) a |= b