mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
44 lines
936 B
C
44 lines
936 B
C
/*
|
|
* Copyright (c), Recep Aslantas.
|
|
*
|
|
* MIT License (MIT), http://opensource.org/licenses/MIT
|
|
* Full license can be found in the LICENSE file
|
|
*/
|
|
|
|
/* test inline */
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
|
|
#define GLM_PREFIX glm_
|
|
#define GLM(X) (glm_ ## X)
|
|
|
|
#include "test_vec3.h"
|
|
#include "test_vec4.h"
|
|
#include "test_mat3.h"
|
|
#include "test_mat4.h"
|
|
#include "test_quat.h"
|
|
#include "test_project.h"
|
|
#include "test_plane.h"
|
|
|
|
#undef GLM
|
|
#undef GLM_PREFIX
|
|
|
|
/* test pre-compiled */
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#define GLM_PREFIX glmc_
|
|
#define GLM(X) (glmc_ ## X)
|
|
|
|
#include "test_vec3.h"
|
|
#include "test_vec4.h"
|
|
#include "test_mat3.h"
|
|
#include "test_mat4.h"
|
|
#include "test_quat.h"
|
|
#include "test_project.h"
|
|
#include "test_plane.h"
|
|
|
|
#undef GLM
|
|
#undef GLM_PREFIX
|
|
|
|
/*---------------------------------------------------------------------------*/
|