mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 599507. Make gfx3DMatrix::operator* const. r=joe, a=blocker
This commit is contained in:
parent
50f59c86bf
commit
d94575c8d9
@ -68,7 +68,7 @@ public:
|
||||
/**
|
||||
* Matrix multiplication.
|
||||
*/
|
||||
inline gfx3DMatrix operator*(const gfx3DMatrix &aMatrix);
|
||||
inline gfx3DMatrix operator*(const gfx3DMatrix &aMatrix) const;
|
||||
|
||||
/**
|
||||
* Return true if this matrix and |aMatrix| are the same matrix.
|
||||
@ -134,7 +134,7 @@ gfx3DMatrix::gfx3DMatrix(void)
|
||||
}
|
||||
|
||||
inline gfx3DMatrix
|
||||
gfx3DMatrix::operator*(const gfx3DMatrix &aMatrix)
|
||||
gfx3DMatrix::operator*(const gfx3DMatrix &aMatrix) const
|
||||
{
|
||||
gfx3DMatrix matrix;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user