reemove redundant forward declerations

This commit is contained in:
Recep Aslantas
2020-03-06 23:33:27 +03:00
parent b3a464bf89
commit 7eada03909
4 changed files with 1 additions and 13 deletions

View File

@@ -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

View File

@@ -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);

View File

@@ -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

View File

@@ -66,7 +66,7 @@
/*!
* @brief init vec2 using vec2
*
* @param[in] v4 vector3
* @param[in] v3 vector3
* @returns destination
*/
CGLM_INLINE