You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain classes like SJoint have members that are required to be aligned by 16 Bytes for SSE (for matrix4 operations). They are however allocated with "new", which causes exceptions whenever you run into alignment issues.
SJoint should be therefore allocated with memalign/__aligned_malloc, not the default new as is the case here:
Certain classes like SJoint have members that are required to be aligned by 16 Bytes for SSE (for matrix4 operations). They are however allocated with "new", which causes exceptions whenever you run into alignment issues.
SJoint should be therefore allocated with
memalign/__aligned_malloc
, not the default new as is the case here:YAGF/include/Core/ISkinnedMesh.h
Line 1237 in da3a88b
(Example exception caused by not properly aligned allocation: http://i.imgur.com/63AL48a.png)
edit: here is a simple fix (only tested the windows path)
The text was updated successfully, but these errors were encountered: