Thread: GSdx
View Single Post
Old May 8th, 2008   #1651 (permalink)
Samhayne
Registered User
 
Join Date: Feb 2004
Location: Germany
Posts: 75
Quote:
Originally Posted by GothicIII View Post
EDIT: In the SSE4-Version, there some syntaxerror with ";" and ")" in GSvector.h in raw 53 and 54
That's the thing I mentioned above... didn't get either what's wrong there.
Yet, you can make it compile by doing:

Code:
//GSVector4 floor() const {return GSVector4(_mm_floor_ps(m));}
//GSVector4 ceil() const {return GSVector4(_mm_ceil_ps(m));}
GSVector4 floor() const {return GSVector4(_mm_round_ps((m), _MM_FROUND_FLOOR));}
GSVector4 ceil() const {return GSVector4(_mm_round_ps((m), _MM_FROUND_CEIL));}
Samhayne is offline   Reply With Quote