Home | History | Annotate | Download | only in core

Lines Matching defs:fCTM

176         fCTM = SkMatrix::I();
179 fSaveStack.push_back({ 0, Bounds::MakeEmpty(), nullptr, fCTM });
207 const SkMatrix& ctm() const { return fCTM; }
228 fCTM.mapRect(&rect);
248 void updateCTM(const Restore& op) { fCTM = op.matrix; }
249 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
250 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
251 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
284 sb.ctm = this->fCTM;
437 SkDrawShadowMetrics::GetLocalBounds(op.path, op.rec, fCTM, &bounds);
498 // as we go using updateCTM() to maintain the exact CTM (fCTM).
500 SkMatrix fCTM;