Home | History | Annotate | Download | only in core

Lines Matching defs:fCTM

172         fCTM = SkMatrix::I();
175 fSaveStack.push_back({ 0, Bounds::MakeEmpty(), nullptr, fCTM });
203 const SkMatrix& ctm() const { return fCTM; }
224 fCTM.mapRect(&rect);
244 void updateCTM(const Restore& op) { fCTM = op.matrix; }
245 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
246 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
247 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
280 sb.ctm = this->fCTM;
432 SkDrawShadowMetrics::GetLocalBounds(op.path, op.rec, fCTM, &bounds);
493 // as we go using updateCTM() to maintain the exact CTM (fCTM).
495 SkMatrix fCTM;