diff options
Diffstat (limited to '')
-rw-r--r-- | external/include/glm/gtx/projection.inl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/include/glm/gtx/projection.inl b/external/include/glm/gtx/projection.inl index d21fe83..90950f8 100644 --- a/external/include/glm/gtx/projection.inl +++ b/external/include/glm/gtx/projection.inl @@ -3,8 +3,8 @@ namespace glm { - template <typename vecType> - GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) + template<typename genType> + GLM_FUNC_QUALIFIER genType proj(genType const& x, genType const& Normal) { return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal; } |