diff options
author | 3gg <3gg@shellblade.net> | 2025-07-04 17:27:11 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-07-04 17:27:11 -0700 |
commit | 9d6a2d71e4c8c3bb5ef8d9088a5cec985f869b9b (patch) | |
tree | 6a253beee47edbd45ac83d041b229557fd28182e /include | |
parent | b37b5398a6afa940acd1138bde922a70838f33af (diff) |
Diffstat (limited to 'include')
-rw-r--r-- | include/gfx/llr/llr.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/gfx/llr/llr.h b/include/gfx/llr/llr.h index 57abffc..77df33f 100644 --- a/include/gfx/llr/llr.h +++ b/include/gfx/llr/llr.h | |||
@@ -30,8 +30,8 @@ void gfx_llr_pop_light(LLR*); | |||
30 | /// animated, unload the skeleton prior to rendering them. | 30 | /// animated, unload the skeleton prior to rendering them. |
31 | void gfx_llr_set_skeleton(LLR*, const Anima*, const Skeleton*); | 31 | void gfx_llr_set_skeleton(LLR*, const Anima*, const Skeleton*); |
32 | 32 | ||
33 | /// Unload the loaded skeleton. | 33 | /// Clear the loaded skeleton. |
34 | void gfx_llr_unset_skeleton(LLR*); | 34 | void gfx_llr_clear_skeleton(LLR*); |
35 | 35 | ||
36 | /// Set the camera. | 36 | /// Set the camera. |
37 | void gfx_llr_set_camera(LLR*, const Camera*); | 37 | void gfx_llr_set_camera(LLR*, const Camera*); |
@@ -39,6 +39,9 @@ void gfx_llr_set_camera(LLR*, const Camera*); | |||
39 | /// Set the view-projection matrix. | 39 | /// Set the view-projection matrix. |
40 | // void gfx_llr_set_view_projection_matrix(LLR*, const mat4*); | 40 | // void gfx_llr_set_view_projection_matrix(LLR*, const mat4*); |
41 | 41 | ||
42 | /// Set the aspect ratio. | ||
43 | void gfx_llr_set_aspect(LLR*, float aspect); | ||
44 | |||
42 | /// Render the geometry. | 45 | /// Render the geometry. |
43 | void gfx_llr_render_geometry(LLR*, const Geometry*); | 46 | void gfx_llr_render_geometry(LLR*, const Geometry*); |
44 | 47 | ||