removed matrix alignment to be compatible with RW

This commit is contained in:
aap 2020-08-24 23:56:54 +02:00
parent 77b7229356
commit 30b77b0b32
1 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ inline V3d rotate(const V3d &v, const Quat &q) { return mult(mult(q, makeQuat(0.
Quat lerp(const Quat &q, const Quat &p, float32 r);
Quat slerp(const Quat &q, const Quat &p, float32 a);
struct RWALIGN(16) RawMatrix
struct RawMatrix
{
V3d right;
float32 rightw;
@ -312,7 +312,7 @@ struct RWALIGN(16) RawMatrix
static void setIdentity(RawMatrix *dst);
};
struct RWALIGN(16) Matrix
struct Matrix
{
enum Type {
TYPENORMAL = 1,