summaryrefslogtreecommitdiff
path: root/libs/cglm/src/clipspace/view_lh_zo.c
blob: a8680d9dd833ea2b536842bd3f3520e7e28b714f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * 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/view_lh_zo.h"
#include "../../include/cglm/call/clipspace/view_lh_zo.h"

CGLM_EXPORT
void
glmc_lookat_lh_zo(vec3 eye, vec3 center, vec3 up, mat4 dest) {
  glm_lookat_lh_zo(eye, center, up, dest);
}

CGLM_EXPORT
void
glmc_look_lh_zo(vec3 eye, vec3 dir, vec3 up, mat4 dest) {
  glm_look_lh_zo(eye, dir, up, dest);
}

CGLM_EXPORT
void
glmc_look_anyup_lh_zo(vec3 eye, vec3 dir, mat4 dest) {
  glm_look_anyup_lh_zo(eye, dir, dest);
}