mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 12:32:40 +00:00
15 lines
332 B
C
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);
|
|
}
|