vec: use _negate instead of _flipsign and _inv

* negate is better and common name, flipsign is deprecated now.
This commit is contained in:
Recep Aslantas
2018-11-28 10:28:00 +03:00
parent 89f64f0794
commit 463099350a
7 changed files with 91 additions and 15 deletions

View File

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