Lines Matching refs:SkDumpCanvas
149 SkDumpCanvas::SkDumpCanvas(Dumper* dumper) : fNestLevel(0) { in SkDumpCanvas() function in SkDumpCanvas
160 SkDumpCanvas::~SkDumpCanvas() { in ~SkDumpCanvas()
164 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint, in dump()
181 int SkDumpCanvas::save(SaveFlags flags) { in save()
186 int SkDumpCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, in saveLayer()
192 void SkDumpCanvas::restore() { in restore()
197 bool SkDumpCanvas::translate(SkScalar dx, SkScalar dy) { in translate()
203 bool SkDumpCanvas::scale(SkScalar sx, SkScalar sy) { in scale()
209 bool SkDumpCanvas::rotate(SkScalar degrees) { in rotate()
214 bool SkDumpCanvas::skew(SkScalar sx, SkScalar sy) { in skew()
220 bool SkDumpCanvas::concat(const SkMatrix& matrix) { in concat()
227 void SkDumpCanvas::setMatrix(const SkMatrix& matrix) { in setMatrix()
240 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { in clipRect()
248 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath()
256 bool SkDumpCanvas::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { in clipRegion()
266 void SkDumpCanvas::drawPaint(const SkPaint& paint) { in drawPaint()
270 void SkDumpCanvas::drawPoints(PointMode mode, size_t count, in drawPoints()
276 void SkDumpCanvas::drawRect(const SkRect& rect, const SkPaint& paint) { in drawRect()
282 void SkDumpCanvas::drawPath(const SkPath& path, const SkPaint& paint) { in drawPath()
288 void SkDumpCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar x, SkScalar y, in drawBitmap()
296 void SkDumpCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkIRect* src, in drawBitmapRect()
314 void SkDumpCanvas::drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m, in drawBitmapMatrix()
323 void SkDumpCanvas::drawSprite(const SkBitmap& bitmap, int x, int y, in drawSprite()
331 void SkDumpCanvas::drawText(const void* text, size_t byteLength, SkScalar x, in drawText()
339 void SkDumpCanvas::drawPosText(const void* text, size_t byteLength, in drawPosText()
348 void SkDumpCanvas::drawPosTextH(const void* text, size_t byteLength, in drawPosTextH()
358 void SkDumpCanvas::drawTextOnPath(const void* text, size_t byteLength, in drawTextOnPath()
367 void SkDumpCanvas::drawPicture(SkPicture& picture) { in drawPicture()
377 void SkDumpCanvas::drawVertices(VertexMode vmode, int vertexCount, in drawVertices()
387 void SkDumpCanvas::drawData(const void* data, size_t length) { in drawData()
419 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb, in dump()
438 if (SkDumpCanvas::kDrawText_Verb == verb) { in dump()