Home | History | Annotate | Download | only in skia

Lines Matching refs:mOutput

33             : mOutput(output)
40 mOutput << mIdent << "clipRect" << std::endl;
44 mOutput << mIdent << "clipRRect" << std::endl;
48 mOutput << mIdent << "clipPath" << std::endl;
52 mOutput << mIdent << "clipRegion" << std::endl;
55 void onDrawPaint(const SkPaint&) override { mOutput << mIdent << "drawPaint" << std::endl; }
58 mOutput << mIdent << "drawPath" << std::endl;
62 mOutput << mIdent << "drawRect" << std::endl;
66 mOutput << mIdent << "drawRegion" << std::endl;
70 mOutput << mIdent << "drawOval" << std::endl;
74 mOutput << mIdent << "drawArc" << std::endl;
78 mOutput << mIdent << "drawRRect" << std::endl;
82 mOutput << mIdent << "drawDRRect" << std::endl;
86 mOutput << mIdent << "drawText" << std::endl;
90 mOutput << mIdent << "drawPosText" << std::endl;
94 mOutput << mIdent << "drawPosTextH" << std::endl;
99 mOutput << mIdent << "drawTextOnPath" << std::endl;
104 mOutput << mIdent << "drawTextRSXform" << std::endl;
108 mOutput << mIdent << "drawTextBlob" << std::endl;
112 mOutput << mIdent << "drawImage" << std::endl;
117 mOutput << mIdent << "drawImageNine" << std::endl;
122 mOutput << mIdent << "drawImageRect" << std::endl;
127 mOutput << mIdent << "drawImageLattice" << std::endl;
131 mOutput << mIdent << "drawPoints" << std::endl;
135 mOutput << mIdent << "drawPicture" << std::endl;
139 mOutput << mIdent;
142 mOutput << std::string(mLevel * 2, ' ') << "drawRenderNode";
143 renderNodeDrawable->getRenderNode()->output(mOutput, mLevel + 1);
148 mOutput << std::string(mLevel * 2, ' ') << "drawGLFunctorDrawable" << std::endl;
152 mOutput << std::string(mLevel * 2, ' ') << "drawDrawable" << std::endl;
174 std::ostream& mOutput;