summaryrefslogtreecommitdiff
path: root/src/os/guRotateF.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/guRotateF.c')
-rw-r--r--src/os/guRotateF.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os/guRotateF.c b/src/os/guRotateF.c
index aaebf6cfe..0bdfad841 100644
--- a/src/os/guRotateF.c
+++ b/src/os/guRotateF.c
@@ -1,4 +1,5 @@
#include "libultra_internal.h"
+#include "port/interpolation/FrameInterpolation.h"
void guRotateF(float m[4][4], float a, float x, float y, float z) {
float sin_a;
@@ -38,5 +39,7 @@ void guRotateF(float m[4][4], float a, float x, float y, float z) {
void guRotate(Mtx* m, float a, float x, float y, float z) {
float mf[4][4];
guRotateF(mf, a, x, y, z);
+ FrameInterpolation_Record_guRotate(mf, a, x, y, z);
+ FrameInterpolation_RecordMatrixMtxFToMtx(mf, m);
guMtxF2L(mf, m);
}