This commit is contained in:
erwin coumans
2013-05-21 16:47:23 -07:00
23 changed files with 2902 additions and 21 deletions

View File

@@ -68,7 +68,11 @@ public:
mVec128 = v128;
}
#else
b3Scalar m_floats[4];
union
{
b3Scalar m_floats[4];
struct {b3Scalar x,y,z,w;};
};
#endif // B3_USE_SSE
#endif //__CELLOS_LV2__ __SPU__

View File

@@ -106,7 +106,11 @@ public:
mVec128 = v128;
}
#else
b3Scalar m_floats[4];
union
{
b3Scalar m_floats[4];
struct {b3Scalar x,y,z,w;};
};
#endif
#endif //__CELLOS_LV2__ __SPU__