зеркало из https://github.com/mozilla/gecko-dev.git
Bug 599507. Make gfx3DMatrix::operator* const. r=joe, a=blocker
This commit is contained in:
Родитель
dfb7e963f1
Коммит
962307ba2b
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче