diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-14 22:11:43 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-14 22:11:43 +1100 |
commit | 253c90f7ceabff956260b40b69ec7ca55f91e710 (patch) | |
tree | 49e45764acab57368b4914bcb0fd77b6b1a1c862 /src/camera.h | |
parent | 2af96e3bc19fac5a3dc27f0eedff1b95ef1d473b (diff) | |
parent | 70308798adbaa376da97c9c0739d437fe76b8b36 (diff) |
Merge branch 'master' of github.com:omnisci3nce/celeritas-core
Diffstat (limited to 'src/camera.h')
-rw-r--r-- | src/camera.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/camera.h b/src/camera.h index 226f80e..f7bc6eb 100644 --- a/src/camera.h +++ b/src/camera.h @@ -23,4 +23,5 @@ typedef struct camera { camera camera_create(vec3 pos, vec3 front, vec3 up, f32 fov); /** @brief get a 4x4 transform matrix for the view and perspective projection */ -void camera_view_projection(camera *c, f32 screen_height, f32 screen_width, mat4 *out_view_proj);
\ No newline at end of file +void camera_view_projection(camera *c, f32 screen_height, f32 screen_width, mat4 *out_view, + mat4 *out_proj);
\ No newline at end of file |