Lines Matching defs:dest
233 * \param dest destination matrix.
241 _math_matrix_mul_matrix( GLmatrix *dest, const GLmatrix *a, const GLmatrix *b )
243 dest->flags = (a->flags |
248 if (TEST_MAT_FLAGS(dest, MAT_FLAGS_3D))
249 matmul34( dest->m, a->m, b->m );
251 matmul4( dest->m, a->m, b->m );
257 * \param dest left and destination matrix.
264 _math_matrix_mul_floats( GLmatrix *dest, const GLfloat *m )
266 dest->flags |= (MAT_FLAG_GENERAL |
271 matmul4( dest->m, dest->m, m );