rename _dup (duplicate) to _copy

I think _copy is better and COMMON  name for duplicating/copying
vector, matrices
This commit is contained in:
Recep Aslantas
2017-02-23 09:57:28 +03:00
parent 595ad42cb8
commit 4462a84f4a
13 changed files with 46 additions and 46 deletions

View File

@@ -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