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

  /external/skia/include/core/
SkImageFilter.h 58 : fCTM(ctm)
64 const SkMatrix& ctm() const { return fCTM; }
70 SkMatrix fCTM;
  /external/skia/src/core/
SkDevice.h 122 const SkMatrix& ctm() const { return fCTM; }
124 fCTM = ctm;
389 SkMatrix fCTM;
SkRecordDraw.cpp 167 fCTM = SkMatrix::I();
197 const SkMatrix& ctm() const { return fCTM; }
218 fCTM.mapRect(&rect);
238 void updateCTM(const Restore& op) { fCTM = op.matrix; }
239 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
240 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
241 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
317 sb.ctm = this->fCTM;
594 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
597 SkMatrix fCTM;
    [all...]
  /external/skia/src/shaders/
SkShaderBase.h 124 const SkMatrix& getCTM() const { return fCTM; }
127 SkMatrix fCTM;

Completed in 431 milliseconds