From 3adb4236fe6e0bbdbee3063a5b5598f7a4a4a162 Mon Sep 17 00:00:00 2001 From: Lassi Helynranta Date: Wed, 11 Dec 2024 20:17:37 +0200 Subject: [PATCH] Fix module interface missing some gtx quaternion functions --- glm/glm.cppm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/glm/glm.cppm b/glm/glm.cppm index 85e946e0..13dcb61a 100644 --- a/glm/glm.cppm +++ b/glm/glm.cppm @@ -2634,6 +2634,9 @@ export namespace glm { using glm::tanh; using glm::third; using glm::three_over_two_pi; + using glm::toMat3; + using glm::toMat4; + using glm::toQuat; using glm::translate; using glm::transpose; using glm::triangleNormal;