summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Matrix.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2021-11-13 15:09:28 +0100
committerGitHub <noreply@github.com>2021-11-13 15:09:28 +0100
commit3e8427991999a4a46b9cc5f75cc161b061deda33 (patch)
tree6fb04d38f4ce7504e0f7343564792b41f6525463 /Source/Core/Common/Matrix.cpp
parentc55721c754cebdecd68ef6873c1f1837776322fc (diff)
parent834a59d89b3d6c54015b1b661f8f69243cf06b3f (diff)
Merge pull request #10208 from thatSteveFan/patch-1
Minor comment fix in Matrix.cpp
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>