Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,12 +663,12 @@ def MatchingFor(*versions):
DolphinLib(
"mtx",
[
Object(NonMatching, "dolphin/mtx/mtx.c"),
Object(NonMatching, "dolphin/mtx/mtxvec.c"),
Object(NonMatching, "dolphin/mtx/mtx44.c"),
Object(Matching, "dolphin/mtx/mtx.c"),
Object(Matching, "dolphin/mtx/mtxvec.c"),
Object(Matching, "dolphin/mtx/mtx44.c"),
Object(Matching, "dolphin/mtx/mtx44vec.c"),
Object(Matching, "dolphin/mtx/vec.c"),
Object(NonMatching, "dolphin/mtx/quat.c"),
Object(Matching, "dolphin/mtx/quat.c"),
]
),
DolphinLib(
Expand Down
1 change: 1 addition & 0 deletions include/dolphin/mtx.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ extern "C"
void C_QUATMtx(Quaternion*, const Mtx);
void C_QUATLerp(const Quaternion*, const Quaternion*, Quaternion*, f32);
void C_QUATSlerp(const Quaternion*, const Quaternion*, Quaternion*, f32);
void C_QUATRotAxisRad(float r, float *axis, Vec *rad);

void PSMTX44MultVec(const Mtx44 m, const Vec *src, Vec *dst);
void PSMTX44MultVecArray(const Mtx44 m, const Vec *srcBase, Vec *dstBase, u32 count);
Expand Down
Loading
Loading