Initial Commit

This commit is contained in:
Recep Aslantas
2016-09-11 12:29:22 +03:00
commit 6c6418d19a
8 changed files with 228 additions and 0 deletions

28
include/cglm.h Normal file
View File

@@ -0,0 +1,28 @@
/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
#ifndef glm_h
#define glm_h
#include "cglm-common.h"
typedef float vec3[3];
typedef float vec4[4];
typedef float mat3[3];
typedef float mat4[16];
CGLM_INLINE
void
glm_mat_mul4(float * __restrict m1,
float * __restrict m2,
float * __restrict dest);
#include "cglm-vec.h"
#include "cglm-mat.h"
#endif /* glm_h */