From cfb8cd9447371139badef16cbd63c6b1fbfc54aa Mon Sep 17 00:00:00 2001 From: Marcin Date: Tue, 18 Mar 2025 14:17:35 +0000 Subject: [PATCH] more mat4's --- include/cglm/mat4.h | 2 +- include/cglm/struct/mat4.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cglm/mat4.h b/include/cglm/mat4.h index 1c36c26..6563e74 100644 --- a/include/cglm/mat4.h +++ b/include/cglm/mat4.h @@ -360,7 +360,7 @@ glm_mat4_mul(mat4 m1, mat4 m2, mat4 dest) { * size but if len is too small then compiler may unroll whole loop, * usage: * @code - * mat m1, m2, m3, m4, res; + * mat4 m1, m2, m3, m4, res; * * glm_mat4_mulN((mat4 *[]){&m1, &m2, &m3, &m4}, 4, res); * @endcode diff --git a/include/cglm/struct/mat4.h b/include/cglm/struct/mat4.h index 35b184b..243439e 100644 --- a/include/cglm/struct/mat4.h +++ b/include/cglm/struct/mat4.h @@ -223,7 +223,7 @@ glms_mat4_(mul)(mat4s m1, mat4s m2) { * size but if len is too small then compiler may unroll whole loop, * usage: * @code - * mat m1, m2, m3, m4, res; + * mat4 m1, m2, m3, m4, res; * * res = glm_mat4_mulN((mat4 *[]){&m1, &m2, &m3, &m4}, 4); * @endcode