Home
last modified time | relevance | path

Searched refs:fCTM (Results 1 – 4 of 4) sorted by relevance

/external/skia/include/core/
DSkImageFilter.h56 : fCTM(ctm) in Context()
61 const SkMatrix& ctm() const { return fCTM; } in ctm()
66 SkMatrix fCTM;
DSkShader.h177 const SkMatrix& getCTM() const { return fCTM; } in getCTM()
179 SkMatrix fCTM;
/external/skia/src/core/
DSkRecordDraw.cpp157 fCTM = SkMatrix::I(); in FillBounds()
187 const SkMatrix& ctm() const { return fCTM; } in ctm()
208 fCTM.mapRect(&rect); in adjustAndMap()
228 void updateCTM(const Restore& op) { fCTM = op.matrix; } in updateCTM()
229 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; } in updateCTM()
230 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); } in updateCTM()
304 sb.ctm = this->fCTM; in pushSaveBlock()
584 SkMatrix fCTM; member in SkRecords::FillBounds
DSkShader.cpp104 : fShader(shader), fCTM(*rec.fMatrix) in Context()