summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtx/mixed_product.inl
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/gtx/mixed_product.inl')
-rw-r--r--external/include/glm/gtx/mixed_product.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/external/include/glm/gtx/mixed_product.inl b/external/include/glm/gtx/mixed_product.inl
index a6ede59..01e94ec 100644
--- a/external/include/glm/gtx/mixed_product.inl
+++ b/external/include/glm/gtx/mixed_product.inl
@@ -3,12 +3,12 @@
namespace glm
{
- template <typename T, precision P>
+ template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER T mixedProduct
(
- tvec3<T, P> const & v1,
- tvec3<T, P> const & v2,
- tvec3<T, P> const & v3
+ vec<3, T, Q> const& v1,
+ vec<3, T, Q> const& v2,
+ vec<3, T, Q> const& v3
)
{
return dot(cross(v1, v2), v3);