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

@@ -87,7 +87,7 @@ glm_inv_tr(mat4 mat) {
/* translate */
glm_mat3_mulv(r, mat[3], t);
glm_vec_flipsign(t);
glm_vec_dup(t, mat[3]);
glm_vec_copy(t, mat[3]);
#endif
}