mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
rename _dup (duplicate) to _copy
I think _copy is better and COMMON name for duplicating/copying vector, matrices
This commit is contained in:
@@ -9,14 +9,14 @@
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat4_udup(mat4 mat, mat4 dest) {
|
||||
glm_mat4_dup(mat, dest);
|
||||
glmc_mat4_ucopy(mat4 mat, mat4 dest) {
|
||||
glm_mat4_copy(mat, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat4_dup(mat4 mat, mat4 dest) {
|
||||
glm_mat4_dup(mat, dest);
|
||||
glmc_mat4_copy(mat4 mat, mat4 dest) {
|
||||
glm_mat4_copy(mat, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
|
||||
Reference in New Issue
Block a user