BLI_math: fix parameter aliasing in mul_m3_series and mul_m4_series #104934

Merged
Chris Blackbourn merged 2 commits from Chris_Blackbourn/blender:matrix-multiply-series into main 2023-02-20 23:04:20 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit aee16ffc0d - Show all commits

View File

@ -131,7 +131,7 @@ TEST(math_matrix, mul_m4_series)
{0.0f, 0.0f, 125.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 343.0f},
};
EXPECT_M3_NEAR(matrix, expect, 1e-5);
EXPECT_M4_NEAR(matrix, expect, 1e-5);
deadpin marked this conversation as resolved
Review

Should be EXPECT_M4_NEAR

Should be `EXPECT_M4_NEAR`
Review

Nice spotting! Should be fixed now.

Nice spotting! Should be fixed now.
}
namespace blender::tests {