Fix matrix multiplication ordering

Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
This commit is contained in:
Isaac Marovitz 2025-03-27 18:43:28 -04:00
parent 253c5954cd
commit 46938a4142
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1

View file

@ -180,7 +180,7 @@ float rcp(T a)
template<typename T>
float4x4 mul(T a, T b)
{
return a * b;
return b * a;
}
#endif