here is an expample :
__declspec(align(16)) Vec3 ...
in angelcode, vec3 is binded with (asOBJ_VALUE | asOBJ_APP_CLASS_CDAK) flags
engine->RegisterObjectType( "vec3", sizeof(Vec3), asOBJ_VALUE | asOBJ_APP_CLASS_CDAK );
later on, I get exceptions with my math operations that use SSE (xmm loads)
does angelcode support aligned allocation from it's stack ?






