Quote:
Originally Posted by GothicIII
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));}