diff options
| author | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-28 14:18:38 -0600 |
|---|---|---|
| committer | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2025-05-28 14:18:38 -0600 |
| commit | 5bf771b58331870a1cc00323a353ec452b4c9ced (patch) | |
| tree | a697c9390648960ee88ce7b696c91b0ab333bf36 /src/port/interpolation/FrameInterpolation.h | |
| parent | c55781264336269a7086e4be33df2659d70ce061 (diff) | |
wip interp changeswipinterpchanges
Diffstat (limited to 'src/port/interpolation/FrameInterpolation.h')
| -rw-r--r-- | src/port/interpolation/FrameInterpolation.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/port/interpolation/FrameInterpolation.h b/src/port/interpolation/FrameInterpolation.h index 742dec470..aaf977600 100644 --- a/src/port/interpolation/FrameInterpolation.h +++ b/src/port/interpolation/FrameInterpolation.h @@ -51,10 +51,16 @@ void FrameInterpolation_RecordMatrixTranslate(Mat4* matrix, Vec3f b); void FrameInterpolation_RecordMatrixScale(Mat4* matrix, f32 scale); +void FrameInterpolation_Record_guPerspective(Mat4* matrix, u16* perspNorm, f32 fovy, f32 aspect, f32 near, f32 far, f32 scale); + +void FrameInterpolation_Record_guLookAt(Mat4* matrix, f32 xEye, f32 yEye, f32 zEye, f32 xAt, f32 yAt, f32 zAt, f32 xUp, f32 yUp, f32 zUp); + void FrameInterpolation_Record_guRotate(Mat4* matrix, f32 a, f32 x, f32 y, f32 z); void FrameInterpolation_Record_guScale(Mat4* matrix, f32 x, f32 y, f32 z); +void FrameInterpolation_Record_guOrtho(Mat4* matrix, f32 left, f32 right, f32 bottom, f32 top, f32 near, f32 far, f32 scale); + void FrameInterpolation_Record_SetTextMatrix(Mat4* matrix, f32 x, f32 y, f32 arg3, f32 arg4); void FrameInterpolation_RecordMatrixRotate1Coord(Mat4* matrix, u32 coord, s16 value); |
