mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Fixed warning when compiling with MSVS in SIMD mode
This commit is contained in:
parent
23e0701c04
commit
e9ab34e0f0
1 changed files with 5 additions and 4 deletions
|
@ -144,9 +144,10 @@ namespace glm
|
|||
template<typename T, qualifier Q>
|
||||
GLM_FUNC_QUALIFIER mat<4, 4, T, Q> lookAt(vec<3, T, Q> const& eye, vec<3, T, Q> const& center, vec<3, T, Q> const& up)
|
||||
{
|
||||
GLM_IF_CONSTEXPR(GLM_CONFIG_CLIP_CONTROL & GLM_CLIP_CONTROL_LH_BIT)
|
||||
return lookAtLH(eye, center, up);
|
||||
else
|
||||
return lookAtRH(eye, center, up);
|
||||
# if (GLM_CONFIG_CLIP_CONTROL & GLM_CLIP_CONTROL_LH_BIT)
|
||||
return lookAtLH(eye, center, up);
|
||||
# else
|
||||
return lookAtRH(eye, center, up);
|
||||
# endif
|
||||
}
|
||||
}//namespace glm
|
||||
|
|
Loading…
Add table
Reference in a new issue