summaryrefslogtreecommitdiff
path: root/include/JSystem/JMath
diff options
context:
space:
mode:
Diffstat (limited to 'include/JSystem/JMath')
-rw-r--r--include/JSystem/JMath/JMath.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/JSystem/JMath/JMath.h b/include/JSystem/JMath/JMath.h
index 4d9dd66608..7042cd8d6c 100644
--- a/include/JSystem/JMath/JMath.h
+++ b/include/JSystem/JMath/JMath.h
@@ -89,6 +89,10 @@ inline f32 fastReciprocal(f32 value) {
return JMAFastReciprocal(value);
}
+inline void fastVECNormalize(const Vec* src, Vec* dst) {
+ return JMAFastVECNormalize(src, dst);
+}
+
inline void gekko_ps_copy3(register void* dst, register const void* src) {
register f32 src0;
register f32 src1;