Searched refs:MatrixXF (Results 1 – 3 of 3) sorted by relevance
20 sk_sp<MatrixXF> fRoot, fRA, fRB, fA, fB;25 fRoot = MatrixXF::Make(); in XformGM()27 fRA = MatrixXF::Make(fRoot); in XformGM()28 fRB = MatrixXF::Make(fRoot); in XformGM()30 fA = MatrixXF::Make(fRA); in XformGM()31 fB = MatrixXF::Make(fRB); in XformGM()46 sk_sp<MatrixXF> sub = MatrixXF::Make(); in XformGM()81 auto x0 = MatrixXF::Make(); in onDraw()82 auto x1 = MatrixXF::Make(x0); in onDraw()83 auto x2 = MatrixXF::Make(x1); in onDraw()
90 class MatrixXF : public Xform {92 static sk_sp<MatrixXF> Make(sk_sp<Xform> parent = nullptr) {93 return sk_sp<MatrixXF>(new MatrixXF(std::move(parent)));96 MatrixXF(sk_sp<Xform> parent) : Xform(std::move(parent)) { in MatrixXF() function
81 void MatrixXF::onVisit(XformResolver* resolver) { in onVisit()