2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkDumpCanvas_DEFINED
|
|
|
|
#define SkDumpCanvas_DEFINED
|
|
|
|
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
|
2013-01-15 20:17:47 +00:00
|
|
|
#ifdef SK_DEVELOPER
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** This class overrides all the draw methods on SkCanvas, and formats them
|
|
|
|
as text, and then sends that to a Dumper helper object.
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
Typical use might be to dump a display list to a log file to see what is
|
|
|
|
being drawn.
|
|
|
|
*/
|
|
|
|
class SkDumpCanvas : public SkCanvas {
|
|
|
|
public:
|
|
|
|
class Dumper;
|
|
|
|
|
|
|
|
explicit SkDumpCanvas(Dumper* = 0);
|
|
|
|
virtual ~SkDumpCanvas();
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
enum Verb {
|
|
|
|
kNULL_Verb,
|
|
|
|
|
|
|
|
kSave_Verb,
|
|
|
|
kRestore_Verb,
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
kMatrix_Verb,
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
kClip_Verb,
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
kDrawPaint_Verb,
|
|
|
|
kDrawPoints_Verb,
|
2012-12-12 20:48:18 +00:00
|
|
|
kDrawOval_Verb,
|
2008-12-17 15:59:43 +00:00
|
|
|
kDrawRect_Verb,
|
2012-12-12 20:48:18 +00:00
|
|
|
kDrawRRect_Verb,
|
2008-12-17 15:59:43 +00:00
|
|
|
kDrawPath_Verb,
|
|
|
|
kDrawBitmap_Verb,
|
|
|
|
kDrawText_Verb,
|
|
|
|
kDrawPicture_Verb,
|
2009-12-04 21:32:27 +00:00
|
|
|
kDrawVertices_Verb,
|
2013-05-29 13:24:23 +00:00
|
|
|
kDrawData_Verb,
|
|
|
|
|
|
|
|
kBeginCommentGroup_Verb,
|
|
|
|
kAddComment_Verb,
|
|
|
|
kEndCommentGroup_Verb
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Subclasses of this are installed on the DumpCanvas, and then called for
|
|
|
|
each drawing command.
|
|
|
|
*/
|
|
|
|
class Dumper : public SkRefCnt {
|
|
|
|
public:
|
2012-06-26 19:24:50 +00:00
|
|
|
SK_DECLARE_INST_COUNT(Dumper)
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
|
|
|
|
const SkPaint*) = 0;
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2012-06-26 19:24:50 +00:00
|
|
|
private:
|
|
|
|
typedef SkRefCnt INHERITED;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
Dumper* getDumper() const { return fDumper; }
|
|
|
|
void setDumper(Dumper*);
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2009-06-05 12:24:41 +00:00
|
|
|
int getNestLevel() const { return fNestLevel; }
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2011-12-07 14:46:39 +00:00
|
|
|
virtual int save(SaveFlags) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
|
2011-12-07 14:46:39 +00:00
|
|
|
SaveFlags) SK_OVERRIDE;
|
2011-10-06 13:14:12 +00:00
|
|
|
virtual void restore() SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-10-06 13:14:12 +00:00
|
|
|
virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
|
|
|
|
virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
|
|
|
|
virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
|
|
|
|
virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
|
|
|
|
virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
|
|
|
|
virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2011-10-12 11:52:53 +00:00
|
|
|
virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
|
2012-12-12 20:48:18 +00:00
|
|
|
virtual bool clipRRect(const SkRRect&, SkRegion::Op, bool) SK_OVERRIDE;
|
2011-10-12 11:52:53 +00:00
|
|
|
virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual bool clipRegion(const SkRegion& deviceRgn,
|
2011-12-07 14:46:39 +00:00
|
|
|
SkRegion::Op) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-10-06 13:14:12 +00:00
|
|
|
virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPaint& paint) SK_OVERRIDE;
|
2012-12-12 20:48:18 +00:00
|
|
|
virtual void drawOval(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
|
2013-10-22 16:54:15 +00:00
|
|
|
virtual void drawRect(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
|
2012-12-12 20:48:18 +00:00
|
|
|
virtual void drawRRect(const SkRRect&, const SkPaint& paint) SK_OVERRIDE;
|
2013-10-22 16:54:15 +00:00
|
|
|
virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
|
2011-12-07 14:46:39 +00:00
|
|
|
const SkPaint* paint) SK_OVERRIDE;
|
2012-09-18 15:14:33 +00:00
|
|
|
virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
|
2013-08-16 10:24:37 +00:00
|
|
|
const SkRect& dst, const SkPaint* paint,
|
|
|
|
DrawBitmapRectFlags flags) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
|
2011-12-07 14:46:39 +00:00
|
|
|
const SkPaint* paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
|
2011-12-07 14:46:39 +00:00
|
|
|
const SkPaint* paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawText(const void* text, size_t byteLength, SkScalar x,
|
2011-10-06 13:14:12 +00:00
|
|
|
SkScalar y, const SkPaint& paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawPosText(const void* text, size_t byteLength,
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPoint pos[], const SkPaint& paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawPosTextH(const void* text, size_t byteLength,
|
|
|
|
const SkScalar xpos[], SkScalar constY,
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPaint& paint) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawTextOnPath(const void* text, size_t byteLength,
|
|
|
|
const SkPath& path, const SkMatrix* matrix,
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawPicture(SkPicture&) SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void drawVertices(VertexMode vmode, int vertexCount,
|
|
|
|
const SkPoint vertices[], const SkPoint texs[],
|
|
|
|
const SkColor colors[], SkXfermode* xmode,
|
|
|
|
const uint16_t indices[], int indexCount,
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPaint& paint) SK_OVERRIDE;
|
|
|
|
virtual void drawData(const void*, size_t) SK_OVERRIDE;
|
2013-05-29 13:24:23 +00:00
|
|
|
virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
|
|
|
|
virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
|
|
|
|
virtual void endCommentGroup() SK_OVERRIDE;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Dumper* fDumper;
|
2009-06-05 12:24:41 +00:00
|
|
|
int fNestLevel; // for nesting recursive elements like pictures
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void dump(Verb, const SkPaint*, const char format[], ...);
|
|
|
|
|
|
|
|
typedef SkCanvas INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Formats the draw commands, and send them to a function-pointer provided
|
|
|
|
by the caller.
|
|
|
|
*/
|
|
|
|
class SkFormatDumper : public SkDumpCanvas::Dumper {
|
|
|
|
public:
|
|
|
|
SkFormatDumper(void (*)(const char text[], void* refcon), void* refcon);
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
// override from baseclass that does the formatting, and in turn calls
|
|
|
|
// the function pointer that was passed to the constructor
|
|
|
|
virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
|
2011-10-06 13:14:12 +00:00
|
|
|
const SkPaint*) SK_OVERRIDE;
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
|
|
|
void (*fProc)(const char*, void*);
|
|
|
|
void* fRefcon;
|
2012-01-28 01:45:11 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
typedef SkDumpCanvas::Dumper INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Subclass of Dumper that dumps the drawing command to SkDebugf
|
|
|
|
*/
|
|
|
|
class SkDebugfDumper : public SkFormatDumper {
|
|
|
|
public:
|
|
|
|
SkDebugfDumper();
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkFormatDumper INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2013-01-15 20:17:47 +00:00
|
|
|
|
|
|
|
#endif
|