Fixed build errors #250

master
Christophe Riccio ago%!(EXTRA string=11 years)
parent b3b3069491
commit 2df7addc05
  1. 4
      glm/detail/type_mat2x2.inl
  2. 4
      glm/detail/type_mat3x3.inl
  3. 4
      glm/detail/type_mat4x4.inl

@ -589,7 +589,7 @@ namespace detail
typename tmat2x2<T, P>::row_type & v
)
{
return detail::compute_inverse<tmat2x2, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -599,7 +599,7 @@ namespace detail
tmat2x2<T, P> const & m
)
{
return v * detail::compute_inverse<tmat2x2, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>

@ -680,7 +680,7 @@ namespace detail
typename tmat3x3<T, P>::row_type const & v
)
{
return detail::compute_inverse<tmat3x3, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -690,7 +690,7 @@ namespace detail
tmat3x3<T, P> const & m
)
{
return v * detail::compute_inverse<tmat3x3, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>

@ -815,7 +815,7 @@ namespace detail
typename tmat4x4<T, P>::row_type const & v
)
{
return detail::compute_inverse<tmat4x4, T, P>::call(m) * v;
return detail::compute_inverse<T, P>(m) * v;
}
template <typename T, precision P>
@ -825,7 +825,7 @@ namespace detail
tmat4x4<T, P> const & m
)
{
return v * detail::compute_inverse<tmat4x4, T, P>::call(m);
return v * detail::compute_inverse<T, P>(m);
}
template <typename T, precision P>

Loading…
Cancel
Save