What's the difference between multiplying Matrices together versus using the XMMatrixMultiply?
XMMATRIX aXb; aXb = XMMatrixMultiply( a, b );
XMMATRIX aXb_Xc; aXb_Xc = XMMatrixMultiply( aXb, c );
versus
XMMATRIX delta = a * b * c;
I don't think there is a difference. XMMatrixMultiply is there for people using C instead of C++.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With