summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Matrix.cpp
diff options
context:
space:
mode:
authorthatSteveFan <thatSteveFan@users.noreply.github.com>2021-11-08 15:30:39 -0800
committerGitHub <noreply@github.com>2021-11-08 15:30:39 -0800
commit834a59d89b3d6c54015b1b661f8f69243cf06b3f (patch)
tree553beed75b31f48ee847ac6a0cbd1add98445d22 /Source/Core/Common/Matrix.cpp
parentaa6db1e029f513b3eb4b1d418a61dbc8eca20a41 (diff)
Minor comment fix in Matrix.cpp
Fix comment to say (NxM times MxP).
Diffstat (limited to 'Source/Core/Common/Matrix.cpp')
-rw-r--r--Source/Core/Common/Matrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Matrix.cpp b/Source/Core/Common/Matrix.cpp
index f53bff0efb..8e4d504398 100644
--- a/Source/Core/Common/Matrix.cpp
+++ b/Source/Core/Common/Matrix.cpp
@@ -10,7 +10,7 @@
namespace
{
-// Multiply a NxM matrix by a NxP matrix.
+// Multiply a NxM matrix by a MxP matrix.
template <int N, int M, int P, typename T>
auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b)
-> std::array<T, N * P>