mat2x4: add tables to docs & fix comments

Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
Vincent Davis Jr
2025-04-02 18:29:22 -04:00
parent f3094cdc65
commit b694c97204
5 changed files with 203 additions and 133 deletions

View File

@@ -10,14 +10,14 @@
CGLM_EXPORT
void
glmc_mat2x4_copy(mat2x4 mat, mat2x4 dest) {
glm_mat2x4_copy(mat, dest);
glmc_mat2x4_copy(mat2x4 src, mat2x4 dest) {
glm_mat2x4_copy(src, dest);
}
CGLM_EXPORT
void
glmc_mat2x4_zero(mat2x4 mat) {
glm_mat2x4_zero(mat);
glmc_mat2x4_zero(mat2x4 m) {
glm_mat2x4_zero(m);
}
CGLM_EXPORT
@@ -40,8 +40,8 @@ glmc_mat2x4_mulv(mat2x4 m, vec2 v, vec4 dest) {
CGLM_EXPORT
void
glmc_mat2x4_transpose(mat2x4 m, mat4x2 dest) {
glm_mat2x4_transpose(m, dest);
glmc_mat2x4_transpose(mat2x4 src, mat4x2 dest) {
glm_mat2x4_transpose(src, dest);
}
CGLM_EXPORT