GSdx: one more fix for vs2008.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4426 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gabest11 2011-03-12 23:48:32 +00:00
parent 2d5ade6016
commit 0df52e40cc
2 changed files with 23 additions and 3 deletions

View File

@ -78,4 +78,4 @@ GSVector4i GSVector4i::fit(int preset) const
}
return r;
}
}

View File

@ -960,12 +960,19 @@ public:
__forceinline bool eq(const GSVector4i& v) const
{
#if _M_SSE >= 0x401
// pxor, ptest, je
GSVector4i t = *this ^ v;
return _mm_testz_si128(t, t) != 0;
#else
// pcmpeqd, pmovmskb, cmp, je
return eq32(v).alltrue();
#endif
}
@ -2656,10 +2663,16 @@ public:
__forceinline bool allfalse() const
{
#if _M_SSE >= 0x401
#if _M_SSE >= 0x500
return _mm_testz_ps(m, m) != 0;
#elif _M_SSE >= 0x401
__m128i a = _mm_castps_si128(m);
return _mm_testz_si128(a, a) != 0;
#else
return mask() == 0;
@ -3758,10 +3771,17 @@ public:
__forceinline bool allfalse() const
{
#if _M_SSE >= 0x401
#if _M_SSE >= 0x500
return (_mm_testz_ps(m[0], m[0]) & _mm_testz_ps(m[1], m[1])) != 0;
#elif _M_SSE >= 0x401
__m128i a = _mm_castps_si128(m[0]);
__m128i b = _mm_castps_si128(m[1]);
return (_mm_testz_si128(a, a) & _mm_testz_si128(b, b)) != 0;
#else
return mask() == 0;