mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Fixed build
This commit is contained in:
parent
c2fe3fccf6
commit
a8785bdb7a
@ -11,7 +11,7 @@ namespace glm{
|
||||
namespace detail
|
||||
{
|
||||
template<precision P>
|
||||
struct compute_matrixCompMult<mat<4, 4, float, P, true>
|
||||
struct compute_matrixCompMult<mat, 4, 4, float, P, true>
|
||||
{
|
||||
GLM_STATIC_ASSERT(detail::is_aligned<P>::value, "Specialization requires aligned");
|
||||
|
||||
@ -27,7 +27,7 @@ namespace detail
|
||||
};
|
||||
|
||||
template<precision P>
|
||||
struct compute_transpose<mat<4, 4, float, P, true>
|
||||
struct compute_transpose<mat, 4, 4, float, P, true>
|
||||
{
|
||||
GLM_FUNC_QUALIFIER static mat<4, 4, float, P> call(mat<4, 4, float, P> const & m)
|
||||
{
|
||||
@ -40,7 +40,7 @@ namespace detail
|
||||
};
|
||||
|
||||
template<precision P>
|
||||
struct compute_determinant<mat<4, 4, float, P, true>
|
||||
struct compute_determinant<mat, 4, 4, float, P, true>
|
||||
{
|
||||
GLM_FUNC_QUALIFIER static float call(mat<4, 4, float, P> const& m)
|
||||
{
|
||||
@ -49,7 +49,7 @@ namespace detail
|
||||
};
|
||||
|
||||
template<precision P>
|
||||
struct compute_inverse<mat<4, 4, float, P, true>
|
||||
struct compute_inverse<mat, 4, 4, float, P, true>
|
||||
{
|
||||
GLM_FUNC_QUALIFIER static mat<4, 4, float, P> call(mat<4, 4, float, P> const& m)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user