mirror of
https://github.com/recp/cglm.git
synced 2026-01-04 14:28:06 +00:00
pre-compiled version
This commit is contained in:
43
src/cglm-io.c
Normal file
43
src/cglm-io.c
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c), Recep Aslantas.
|
||||
*
|
||||
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||||
* Full license can be found in the LICENSE file
|
||||
*/
|
||||
|
||||
#include "../include/cglm.h"
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat4_print(mat4 matrix,
|
||||
FILE * __restrict ostream) {
|
||||
glm_mat4_print(matrix, ostream);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat3_print(mat3 matrix,
|
||||
FILE * __restrict ostream) {
|
||||
glm_mat3_print(matrix, ostream);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_vec4_print(vec4 vec,
|
||||
FILE * __restrict ostream) {
|
||||
glm_vec4_print(vec, ostream);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_vec3_print(vec3 vec,
|
||||
FILE * __restrict ostream) {
|
||||
glm_vec3_print(vec, ostream);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_versor_print(versor vec,
|
||||
FILE * __restrict ostream) {
|
||||
glm_versor_print(vec, ostream);
|
||||
}
|
||||
Reference in New Issue
Block a user