Fixed build errors #250
This commit is contained in:
parent
b3b3069491
commit
2df7addc05
@ -589,7 +589,7 @@ namespace detail
|
|||||||
typename tmat2x2<T, P>::row_type & v
|
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>
|
template <typename T, precision P>
|
||||||
@ -599,7 +599,7 @@ namespace detail
|
|||||||
tmat2x2<T, P> const & m
|
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>
|
template <typename T, precision P>
|
||||||
|
@ -680,7 +680,7 @@ namespace detail
|
|||||||
typename tmat3x3<T, P>::row_type const & v
|
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>
|
template <typename T, precision P>
|
||||||
@ -690,7 +690,7 @@ namespace detail
|
|||||||
tmat3x3<T, P> const & m
|
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>
|
template <typename T, precision P>
|
||||||
|
@ -815,7 +815,7 @@ namespace detail
|
|||||||
typename tmat4x4<T, P>::row_type const & v
|
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>
|
template <typename T, precision P>
|
||||||
@ -825,7 +825,7 @@ namespace detail
|
|||||||
tmat4x4<T, P> const & m
|
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>
|
template <typename T, precision P>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user