mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 01:50:42 -05:00
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:
parent
b3a0bdf7f6
commit
b351aa4af4
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user