mirror of
https://github.com/g-truc/glm.git
synced 2025-04-04 13:05:00 +00:00
Add missing template parameter
This commit is contained in:
parent
1926a11cac
commit
437fe63665
1 changed files with 3 additions and 3 deletions
|
@ -921,7 +921,7 @@ struct _swizzle_base1<L, uint, Q, E0, E1, E2, E3, true> : public _swizzle_base1<
|
|||
{
|
||||
static bool call(vec<L, float, Q> const& v1, vec<L, float, Q> const& v2)
|
||||
{
|
||||
return !compute_vec_equal<float, Q, false, 32, true>::call(v1, v2);
|
||||
return !compute_vec_equal<L, float, Q, false, 32, true>::call(v1, v2);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -930,7 +930,7 @@ struct _swizzle_base1<L, uint, Q, E0, E1, E2, E3, true> : public _swizzle_base1<
|
|||
{
|
||||
static bool call(vec<L, uint, Q> const& v1, vec<L, uint, Q> const& v2)
|
||||
{
|
||||
return !compute_vec_equal<uint, Q, false, 32, true>::call(v1, v2);
|
||||
return !compute_vec_equal<L, uint, Q, false, 32, true>::call(v1, v2);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -939,7 +939,7 @@ struct _swizzle_base1<L, uint, Q, E0, E1, E2, E3, true> : public _swizzle_base1<
|
|||
{
|
||||
static bool call(vec<L, int, Q> const& v1, vec<L, int, Q> const& v2)
|
||||
{
|
||||
return !compute_vec_equal<int, Q, false, 32, true>::call(v1, v2);
|
||||
return !compute_vec_equal<L, int, Q, false, 32, true>::call(v1, v2);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue