summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2011-04-14 16:00:42 (GMT)
committerSamuel Rødal <samuel.rodal@nokia.com>2011-04-14 16:01:30 (GMT)
commit7f921ea08c296e7451a44a1dae15350ae183ea20 (patch)
tree401fcbce9ba1b8794d09c1d6b9ce5856aa5cf50a
parent7cc4ffce36c24596630ca83cd6418869d6383670 (diff)
downloadQt-7f921ea08c296e7451a44a1dae15350ae183ea20.zip
Qt-7f921ea08c296e7451a44a1dae15350ae183ea20.tar.gz
Qt-7f921ea08c296e7451a44a1dae15350ae183ea20.tar.bz2
Compile fix in qdrawhelper_sse2.cpp for MSVC 2005.
-rw-r--r--src/gui/painting/qdrawhelper_sse2.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/painting/qdrawhelper_sse2.cpp b/src/gui/painting/qdrawhelper_sse2.cpp
index c6bd339..affc6cc 100644
--- a/src/gui/painting/qdrawhelper_sse2.cpp
+++ b/src/gui/painting/qdrawhelper_sse2.cpp
@@ -523,7 +523,12 @@ public:
static inline Int32x4 v_toInt(Float32x4 x) { return _mm_cvttps_epi32(x); }
+ // pre-VS 2008 doesn't have cast intrinsics, whereas 2008 and later requires it
+#if defined(Q_CC_MSVC) && _MSC_VER < 1500
+ static inline Int32x4 v_greaterOrEqual(Float32x4 a, Float32x4 b) { return (__m128i)_mm_cmpgt_ps(a, b); }
+#else
static inline Int32x4 v_greaterOrEqual(Float32x4 a, Float32x4 b) { return _mm_castps_si128(_mm_cmpgt_ps(a, b)); }
+#endif
};
const uint * QT_FASTCALL qt_fetch_radial_gradient_sse2(uint *buffer, const Operator *op, const QSpanData *data,