Fixed compile error: == instead of =

This commit is contained in:
jbrodman
2012-10-26 16:52:54 -04:00
committed by james.brodman
parent 172a189c6f
commit e323b1d0ad

View File

@@ -274,7 +274,7 @@ static FORCEINLINE bool __any(__vec4_i1 mask) {
}
static FORCEINLINE bool __all(__vec4_i1 mask) {
return (_mm_movemask_ps(mask.v)=0xF);
return (_mm_movemask_ps(mask.v)==0xF);
}
static FORCEINLINE bool __none(__vec4_i1 mask) {