From 7eada03909017982174460a5ec714f9c74207f35 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Fri, 6 Mar 2020 23:33:27 +0300 Subject: [PATCH] reemove redundant forward declerations --- include/cglm/affine.h | 4 ---- include/cglm/quat.h | 4 ---- include/cglm/struct/affine.h | 4 ---- include/cglm/struct/vec2.h | 2 +- 4 files changed, 1 insertion(+), 13 deletions(-) diff --git a/include/cglm/affine.h b/include/cglm/affine.h index 84ead4b..0c71218 100644 --- a/include/cglm/affine.h +++ b/include/cglm/affine.h @@ -40,10 +40,6 @@ #include "mat4.h" #include "affine-mat.h" -CGLM_INLINE -void -glm_mat4_mul(mat4 m1, mat4 m2, mat4 dest); - /*! * @brief translate existing transform matrix by v vector * and stores result in same matrix diff --git a/include/cglm/quat.h b/include/cglm/quat.h index b2e32e4..6d38f27 100644 --- a/include/cglm/quat.h +++ b/include/cglm/quat.h @@ -63,10 +63,6 @@ # include "simd/sse2/quat.h" #endif -CGLM_INLINE -void -glm_mat4_identity(mat4 mat); - CGLM_INLINE void glm_mat4_mulv(mat4 m, vec4 v, vec4 dest); diff --git a/include/cglm/struct/affine.h b/include/cglm/struct/affine.h index b8c6f6d..cd23226 100644 --- a/include/cglm/struct/affine.h +++ b/include/cglm/struct/affine.h @@ -39,10 +39,6 @@ #include "vec4.h" #include "mat4.h" -CGLM_INLINE -mat4s -glms_mat4_mul(mat4s m1, mat4s m2); - /*! * @brief translate existing transform matrix by v vector * and stores result in same matrix diff --git a/include/cglm/struct/vec2.h b/include/cglm/struct/vec2.h index e6ea945..357c08e 100644 --- a/include/cglm/struct/vec2.h +++ b/include/cglm/struct/vec2.h @@ -66,7 +66,7 @@ /*! * @brief init vec2 using vec2 * - * @param[in] v4 vector3 + * @param[in] v3 vector3 * @returns destination */ CGLM_INLINE