Home | History | Annotate | Download | only in utils

Lines Matching full:matrix

77 void SkLayer::setMatrix(const SkMatrix& matrix) {
78 fMatrix = matrix;
81 void SkLayer::setChildrenMatrix(const SkMatrix& matrix) {
82 fChildrenMatrix = matrix;
141 void SkLayer::getLocalTransform(SkMatrix* matrix) const {
142 matrix->setTranslate(m_position.fX, m_position.fY);
146 matrix->preTranslate(tx, ty);
147 matrix->preConcat(this->getMatrix());
148 matrix->preTranslate(-tx, -ty);
151 void SkLayer::localToGlobal(SkMatrix* matrix) const {
152 this->getLocalTransform(matrix);
155 matrix->postConcat(this->getRootLayer()->getMatrix());
166 matrix->postConcat(tmp);
183 SkDebugf("--- drawlayer %p opacity %g size [%g %g] pos [%g %g] matrix %s children %s\n",