HomeSort by relevance Sort by last modified time
    Searched defs:fCTM (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkImageFilter.h 56 : fCTM(ctm)
61 const SkMatrix& ctm() const { return fCTM; }
66 SkMatrix fCTM;
SkShader.h 177 const SkMatrix& getCTM() const { return fCTM; }
179 SkMatrix fCTM;
  /external/skia/src/core/
SkRecordDraw.cpp 157 fCTM = SkMatrix::I();
187 const SkMatrix& ctm() const { return fCTM; }
208 fCTM.mapRect(&rect);
228 void updateCTM(const Restore& op) { fCTM = op.matrix; }
229 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
230 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
304 sb.ctm = this->fCTM;
581 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
584 SkMatrix fCTM;

Completed in 109 milliseconds