Thread: GSdx
View Single Post
Old August 29th, 2008   #3095 (permalink)
boilfish
Registered User
 
Join Date: Aug 2008
Location: 86
Posts: 5
I try to compile rev 851 use "Release SSE2" (sse.h) and i get these error

1>f:\gsdx\trunk\gsdx\gsdx\sse.h(48) : error C3861: '_mm_castsi128_ps': identifier not found
1>f:\gsdx\trunk\gsdx\gsdx\sse.h(49) : error C3861: '_mm_castsi128_ps': identifier not found
1>f:\gsdx\trunk\gsdx\gsdx\sse.h(50) : error C3861: '_mm_castsi128_ps': identifier not found
1>f:\gsdx\trunk\gsdx\gsdx\sse.h(51) : error C3861: '_mm_castsi128_ps': identifier not found
1>f:\gsdx\trunk\gsdx\gsdx\sse.h(52) : error C3861: '_mm_castsi128_ps': identifier not found

Code:
	const __m128 ps_3f800000 = _mm_castsi128_ps(_mm_set1_epi32(0x3f800000));
	const __m128 ps_4b000000 = _mm_castsi128_ps(_mm_set1_epi32(0x4b000000));
	const __m128 ps_7fffffff = _mm_castsi128_ps(_mm_set1_epi32(0x7fffffff));
	const __m128 ps_80000000 = _mm_castsi128_ps(_mm_set1_epi32(0x80000000));
	const __m128 ps_ffffffff = _mm_castsi128_ps(_mm_set1_epi32(0xffffffff));
i have no idea how to fix it
anyone help me please !!
boilfish is offline