mirror of
https://github.com/g-truc/glm.git
synced 2025-04-08 06:43:10 +00:00
Fixed build errors #250
This commit is contained in:
parent
b3b3069491
commit
2df7addc05
3 changed files with 6 additions and 6 deletions
|
@ -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…
Add table
Reference in a new issue