We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ca4181 + 6412ed8 commit 2dce27dCopy full SHA for 2dce27d
include/nbl/builtin/hlsl/cpp_compat/matrix.hlsl
@@ -34,7 +34,7 @@ struct matrix final : private glm::mat<N,M,T>
34
template<uint16_t K>
35
inline friend matrix<T, N, K> mul(matrix const& lhs, matrix<T, M, K> const& rhs)
36
{
37
- return matrix<T, N, K>(glm::operator*(reinterpret_cast<Base const&>(rhs), reinterpret_cast<matrix<T, M, K>::Base const&>(lhs)));
+ return matrix<T, N, K>(glm::operator*(reinterpret_cast<matrix<T, M, K>::Base const&>(rhs), reinterpret_cast<Base const&>(lhs)));
38
}
39
inline friend vector<T, N> mul(matrix const& lhs, vector<T, M> const& rhs)
40
0 commit comments