Allow passing const float* to make functions.

This commit is contained in:
Bruce Mitchener
2024-03-18 19:49:50 +07:00
parent 838c5078b7
commit 182c28faf8
65 changed files with 80 additions and 80 deletions

View File

@@ -420,6 +420,6 @@ glmc_vec4_sqrt(vec4 v, vec4 dest) {
CGLM_EXPORT
void
glmc_vec4_make(float * __restrict src, vec4 dest) {
glmc_vec4_make(const float * __restrict src, vec4 dest) {
glm_vec4_make(src, dest);
}