1
0
Fork 0

matrix: note that _matrix_multiply can multiply in-place

This adds a note to clarify that cogl_matrix_multiply allows you to
multiply the @a matrix in-place, so @a can equal @result but @b can't
equal @result.
This commit is contained in:
Robert Bragg 2011-02-01 13:19:49 +00:00
parent b3a0bdf7f6
commit b351aa4af4

View file

@ -130,7 +130,10 @@ cogl_matrix_init_identity (CoglMatrix *matrix);
* @b: A 4x4 transformation matrix
*
* Multiplies the two supplied matrices together and stores
* the resulting matrix inside @result
* the resulting matrix inside @result.
*
* <note>It is possible to multiply the @a matrix in-place, so
* @result can be equal to @a but can't be equal to @b.</note>
*/
void
cogl_matrix_multiply (CoglMatrix *result,