mirror of
https://github.com/recp/cglm.git
synced 2026-01-02 13:49:59 +00:00
mat4: add new function glm_mat4_make
Function takes in a 16 element float array and converts it into a mat4 matrix. Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
@@ -163,3 +163,9 @@ float
|
||||
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c) {
|
||||
return glm_mat4_rmc(r, m, c);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat4_make(float * __restrict src, mat4 dest) {
|
||||
glm_mat4_make(src, dest);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user