Searched defs:updateCTM (Results 1 – 1 of 1) sorted by relevance
270 template <typename T> void updateCTM(const T&) {} in updateCTM() function in SkRecords::FillBounds271 void updateCTM(const Restore& op) { fCTM = op.matrix; } in updateCTM() function in SkRecords::FillBounds272 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; } in updateCTM() function in SkRecords::FillBounds273 void updateCTM(const SetM44& op) { fCTM = op.matrix.asM33(); } in updateCTM() function in SkRecords::FillBounds274 void updateCTM(const Concat44& op) { fCTM.preConcat(op.matrix.asM33()); } in updateCTM() function in SkRecords::FillBounds275 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); } in updateCTM() function in SkRecords::FillBounds276 void updateCTM(const Scale& op) { fCTM.preScale(op.sx, op.sy); } in updateCTM() function in SkRecords::FillBounds277 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); } in updateCTM() function in SkRecords::FillBounds