mirror of
https://github.com/izzy2lost/Ghostship.git
synced 2026-06-19 01:17:03 -07:00
Disabled interpolation of mul
This commit is contained in:
@@ -314,7 +314,7 @@ void mtxf_rotate_zxy_and_translate(Mat4 dest, Vec3f translate, Vec3s rotate) {
|
||||
*/
|
||||
void mtxf_rotate_xyz_and_translate(Mat4 dest, Vec3f b, Vec3s c) {
|
||||
// TODO: FrameInterpolation is broken, fix it
|
||||
FrameInterpolation_RecordMatrixPosRotXYZ(dest, b, c);
|
||||
// FrameInterpolation_RecordMatrixPosRotXYZ(dest, b, c);
|
||||
register f32 sx = sins(c[0]);
|
||||
register f32 cx = coss(c[0]);
|
||||
|
||||
@@ -499,7 +499,7 @@ void mtxf_align_terrain_triangle(Mat4 mtx, Vec3f pos, s16 yaw, f32 radius) {
|
||||
*/
|
||||
void mtxf_mul(Mat4 dest, Mat4 a, Mat4 b) {
|
||||
// TODO: FrameInterpolation is broken, fix it
|
||||
FrameInterpolation_RecordMatrixMult(dest, dest, 0);
|
||||
// FrameInterpolation_RecordMatrixMult(dest, dest, 0);
|
||||
Mat4 temp;
|
||||
register f32 entry0;
|
||||
register f32 entry1;
|
||||
|
||||
Reference in New Issue
Block a user