Home | History | Annotate | Download | only in core

Lines Matching defs:ctm

46 void SkBaseDevice::setGlobalCTM(const SkMatrix& ctm) {
47 fCTM = ctm;
88 const SkMatrix& ctm = this->ctm();
89 bool isNonTranslate = ctm.getType() & ~(SkMatrix::kTranslate_Mask);
92 bool antiAlias = paint.isAntiAlias() && (!is_int(ctm.getTranslateX()) ||
93 !is_int(ctm.getTranslateY()));
132 SkISize lod = SkPatchUtils::GetLevelOfDetail(cubics, &this->ctm());
506 currM.setConcat(this->ctm(), localM);
510 // (i.e. the shader that cares about the ctm) so we have to undo our little ctm trick
511 // with a localmatrixshader so that the shader draws as if there was no change to the ctm.