mirror of
https://github.com/recp/cglm.git
synced 2025-12-25 04:44:58 +00:00
27 lines
418 B
C
27 lines
418 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 mat3 */
|
|
|
|
#define GLM_PREFIX glm_
|
|
#define GLM(X) (glm_ ## X)
|
|
|
|
#include "test_vec3.h"
|
|
|
|
#undef GLM
|
|
#undef GLM_PREFIX
|
|
|
|
/* test pre-compiled mat3 */
|
|
|
|
#define GLM_PREFIX glmc_
|
|
#define GLM(X) (glmc_ ## X)
|
|
|
|
#include "test_vec3.h"
|
|
|
|
#undef GLM
|
|
#undef GLM_PREFIX
|