Files
cglm/src/clipspace/project_no.c
2021-08-16 01:08:11 +03:00

15 lines
332 B
C

/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
#include "../../include/cglm/clipspace/project_no.h"
CGLM_EXPORT
void
glmc_unprojecti_no(vec3 pos, mat4 invMat, vec4 vp, vec3 dest) {
glm_unprojecti_no(pos, invMat, vp, dest);
}