2012-06-29 14:21:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SKDEBUGCANVAS_H_
|
|
|
|
#define SKDEBUGCANVAS_H_
|
|
|
|
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkDrawCommand.h"
|
2015-08-05 20:57:49 +00:00
|
|
|
#include "SkPath.h"
|
2014-05-19 13:53:10 +00:00
|
|
|
#include "SkPathOps.h"
|
2012-06-29 14:21:22 +00:00
|
|
|
#include "SkPicture.h"
|
2015-08-05 01:44:56 +00:00
|
|
|
#include "SkString.h"
|
2015-08-05 20:57:49 +00:00
|
|
|
#include "SkTArray.h"
|
2017-02-06 14:41:10 +00:00
|
|
|
#include "SkVertices.h"
|
2016-02-10 20:57:30 +00:00
|
|
|
#include "UrlDataManager.h"
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2016-03-10 21:29:36 +00:00
|
|
|
class GrAuditTrail;
|
2015-03-26 14:24:48 +00:00
|
|
|
class SkNWayCanvas;
|
2013-10-17 17:56:10 +00:00
|
|
|
|
2016-10-11 20:26:57 +00:00
|
|
|
class SkDebugCanvas : public SkCanvas {
|
2012-06-29 14:21:22 +00:00
|
|
|
public:
|
2012-07-30 18:54:07 +00:00
|
|
|
SkDebugCanvas(int width, int height);
|
2016-07-21 17:25:54 +00:00
|
|
|
|
2017-03-22 16:05:03 +00:00
|
|
|
~SkDebugCanvas() override;
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2014-03-03 16:32:17 +00:00
|
|
|
void toggleFilter(bool toggle) { fFilter = toggle; }
|
|
|
|
|
|
|
|
void setMegaVizMode(bool megaVizMode) { fMegaVizMode = megaVizMode; }
|
2016-07-21 17:25:54 +00:00
|
|
|
|
2014-03-25 23:31:33 +00:00
|
|
|
bool getMegaVizMode() const { return fMegaVizMode; }
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2013-02-06 20:13:54 +00:00
|
|
|
/**
|
|
|
|
* Enable or disable overdraw visualization
|
|
|
|
*/
|
2015-03-26 14:24:48 +00:00
|
|
|
void setOverdrawViz(bool overdrawViz);
|
2016-07-21 17:25:54 +00:00
|
|
|
|
2014-03-25 23:31:33 +00:00
|
|
|
bool getOverdrawViz() const { return fOverdrawViz; }
|
|
|
|
|
2016-02-12 20:06:53 +00:00
|
|
|
/**
|
|
|
|
* Set the color of the clip visualization. An alpha of zero renders the clip invisible.
|
|
|
|
*/
|
|
|
|
void setClipVizColor(SkColor clipVizColor) { this->fClipVizColor = clipVizColor; }
|
2016-07-21 17:25:54 +00:00
|
|
|
|
2016-02-12 20:06:53 +00:00
|
|
|
SkColor getClipVizColor() const { return fClipVizColor; }
|
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
void setDrawGpuOpBounds(bool drawGpuOpBounds) { fDrawGpuOpBounds = drawGpuOpBounds; }
|
2016-02-29 19:15:06 +00:00
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
bool getDrawGpuOpBounds() const { return fDrawGpuOpBounds; }
|
2016-02-29 20:46:04 +00:00
|
|
|
|
2014-05-19 13:53:10 +00:00
|
|
|
bool getAllowSimplifyClip() const { return fAllowSimplifyClip; }
|
|
|
|
|
2016-07-21 17:25:54 +00:00
|
|
|
void setPicture(SkPicture *picture) { fPicture = picture; }
|
2013-02-06 20:13:54 +00:00
|
|
|
|
2013-10-17 17:56:10 +00:00
|
|
|
/**
|
|
|
|
* Enable or disable texure filtering override
|
|
|
|
*/
|
2015-03-16 17:08:34 +00:00
|
|
|
void overrideTexFiltering(bool overrideTexFiltering, SkFilterQuality);
|
2013-10-17 17:56:10 +00:00
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
|
|
|
Executes all draw calls to the canvas.
|
|
|
|
@param canvas The canvas being drawn to
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
void draw(SkCanvas *canvas);
|
2012-06-29 14:21:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Executes the draw calls up to the specified index.
|
|
|
|
@param canvas The canvas being drawn to
|
|
|
|
@param index The index of the final command being executed
|
2016-12-20 21:48:59 +00:00
|
|
|
@param m an optional Mth gpu op to highlight, or -1
|
2012-06-29 14:21:22 +00:00
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
void drawTo(SkCanvas *canvas, int index, int m = -1);
|
2012-07-31 19:55:32 +00:00
|
|
|
|
2012-08-03 17:32:05 +00:00
|
|
|
/**
|
|
|
|
Returns the most recently calculated transformation matrix
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
const SkMatrix &getCurrentMatrix() {
|
2012-08-03 17:32:05 +00:00
|
|
|
return fMatrix;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the most recently calculated clip
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
const SkIRect &getCurrentClip() {
|
2012-08-03 17:32:05 +00:00
|
|
|
return fClip;
|
|
|
|
}
|
|
|
|
|
2012-07-31 19:55:32 +00:00
|
|
|
/**
|
|
|
|
Returns the index of the last draw command to write to the pixel at (x,y)
|
|
|
|
*/
|
2012-08-01 15:57:52 +00:00
|
|
|
int getCommandAtPoint(int x, int y, int index);
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2013-04-01 18:18:49 +00:00
|
|
|
/**
|
|
|
|
Removes the command at the specified index
|
|
|
|
@param index The index of the command to delete
|
|
|
|
*/
|
|
|
|
void deleteDrawCommandAt(int index);
|
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
|
|
|
Returns the draw command at the given index.
|
|
|
|
@param index The index of the command
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
SkDrawCommand *getDrawCommandAt(int index);
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2013-04-01 18:18:49 +00:00
|
|
|
/**
|
|
|
|
Sets the draw command for a given index.
|
|
|
|
@param index The index to overwrite
|
|
|
|
@param command The new command
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
void setDrawCommandAt(int index, SkDrawCommand *command);
|
2013-04-01 18:18:49 +00:00
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
|
|
|
Returns information about the command at the given index.
|
|
|
|
@param index The index of the command
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
const SkTDArray<SkString *> *getCommandInfo(int index) const;
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2012-07-17 15:40:51 +00:00
|
|
|
/**
|
|
|
|
Returns the visibility of the command at the given index.
|
|
|
|
@param index The index of the command
|
|
|
|
*/
|
|
|
|
bool getDrawCommandVisibilityAt(int index);
|
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
|
|
|
Returns the vector of draw commands
|
|
|
|
*/
|
2013-10-31 17:28:30 +00:00
|
|
|
SK_ATTR_DEPRECATED("please use getDrawCommandAt and getSize instead")
|
2016-07-21 17:25:54 +00:00
|
|
|
const SkTDArray<SkDrawCommand *> &getDrawCommands() const;
|
2013-03-12 07:12:32 +00:00
|
|
|
|
2013-03-11 22:53:11 +00:00
|
|
|
/**
|
|
|
|
Returns the vector of draw commands. Do not use this entry
|
|
|
|
point - it is going away!
|
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
SkTDArray<SkDrawCommand *> &getDrawCommands();
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2012-07-03 20:28:14 +00:00
|
|
|
/**
|
|
|
|
Returns length of draw command vector.
|
|
|
|
*/
|
2013-07-15 22:47:14 +00:00
|
|
|
int getSize() const {
|
2013-01-02 20:20:31 +00:00
|
|
|
return fCommandVector.count();
|
2012-07-03 20:28:14 +00:00
|
|
|
}
|
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
|
|
|
Toggles the visibility / execution of the draw command at index i with
|
|
|
|
the value of toggle.
|
|
|
|
*/
|
|
|
|
void toggleCommand(int index, bool toggle);
|
|
|
|
|
2013-01-17 16:30:56 +00:00
|
|
|
void setUserMatrix(SkMatrix matrix) {
|
|
|
|
fUserMatrix = matrix;
|
2012-08-01 15:57:52 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 13:53:10 +00:00
|
|
|
SkString clipStackData() const { return fClipStackData; }
|
|
|
|
|
2016-02-10 20:57:30 +00:00
|
|
|
/**
|
2016-02-12 20:06:53 +00:00
|
|
|
Returns a JSON object representing up to the Nth draw, where N is less than
|
2016-03-29 16:03:52 +00:00
|
|
|
SkDebugCanvas::getSize(). The encoder may use the UrlDataManager to store binary data such
|
2016-02-12 20:06:53 +00:00
|
|
|
as images, referring to them via URLs embedded in the JSON.
|
2016-02-10 20:57:30 +00:00
|
|
|
*/
|
2016-07-21 17:25:54 +00:00
|
|
|
Json::Value toJSON(UrlDataManager &urlDataManager, int n, SkCanvas *);
|
2016-02-10 20:57:30 +00:00
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
Json::Value toJSONOpList(int n, SkCanvas*);
|
2016-03-10 21:29:36 +00:00
|
|
|
|
2017-09-06 17:07:21 +00:00
|
|
|
void detachCommands(SkTDArray<SkDrawCommand*>* dst) {
|
|
|
|
fCommandVector.swap(*dst);
|
|
|
|
}
|
|
|
|
|
2014-02-21 12:20:45 +00:00
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
void willSave() override;
|
2016-07-21 17:25:54 +00:00
|
|
|
|
|
|
|
SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec &) override;
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void willRestore() override;
|
2014-03-12 20:21:48 +00:00
|
|
|
|
2016-07-21 17:25:54 +00:00
|
|
|
void didConcat(const SkMatrix &) override;
|
2014-03-13 20:03:58 +00:00
|
|
|
|
2016-07-21 17:25:54 +00:00
|
|
|
void didSetMatrix(const SkMatrix &) override;
|
|
|
|
|
2016-06-29 01:54:19 +00:00
|
|
|
void onDrawAnnotation(const SkRect&, const char[], SkData*) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
|
2015-03-26 01:17:31 +00:00
|
|
|
SkScalar constY, const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkMatrix* matrix, const SkPaint&) override;
|
2016-07-07 19:47:17 +00:00
|
|
|
void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform[], const SkRect*,
|
|
|
|
const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint& paint) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
|
|
|
|
void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
|
2016-11-03 18:45:31 +00:00
|
|
|
const SkPoint texCoords[4], SkBlendMode, const SkPaint& paint) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawPaint(const SkPaint&) override;
|
2015-02-13 19:13:00 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawRect(const SkRect&, const SkPaint&) override;
|
|
|
|
void onDrawOval(const SkRect&, const SkPaint&) override;
|
2016-08-19 18:25:19 +00:00
|
|
|
void onDrawArc(const SkRect&, SkScalar, SkScalar, bool, const SkPaint&) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawRRect(const SkRRect&, const SkPaint&) override;
|
|
|
|
void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override;
|
2017-03-17 16:09:04 +00:00
|
|
|
void onDrawVerticesObject(const SkVertices*, SkBlendMode, const SkPaint&) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawPath(const SkPath&, const SkPaint&) override;
|
|
|
|
void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint*) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*,
|
2015-07-28 14:35:14 +00:00
|
|
|
SrcRectConstraint) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*) override;
|
2017-01-12 21:20:50 +00:00
|
|
|
void onDrawImageLattice(const SkImage* image, const Lattice& lattice,
|
|
|
|
const SkRect& dst, const SkPaint* paint) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
|
2015-07-28 14:35:14 +00:00
|
|
|
const SkPaint*, SrcRectConstraint) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint*) override;
|
2016-12-09 14:00:50 +00:00
|
|
|
void onClipRect(const SkRect&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipRRect(const SkRRect&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipPath(const SkPath&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipRegion(const SkRegion& region, SkClipOp) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
|
|
|
|
void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) override;
|
2014-06-04 12:40:44 +00:00
|
|
|
|
2014-03-03 23:25:41 +00:00
|
|
|
void markActiveCommands(int index);
|
2014-03-03 16:32:17 +00:00
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
private:
|
2013-01-02 20:20:31 +00:00
|
|
|
SkTDArray<SkDrawCommand*> fCommandVector;
|
2014-03-25 23:31:33 +00:00
|
|
|
SkPicture* fPicture;
|
2012-07-17 15:40:51 +00:00
|
|
|
bool fFilter;
|
2014-03-03 16:32:17 +00:00
|
|
|
bool fMegaVizMode;
|
2013-01-17 16:30:56 +00:00
|
|
|
SkMatrix fUserMatrix;
|
2012-08-03 17:32:05 +00:00
|
|
|
SkMatrix fMatrix;
|
|
|
|
SkIRect fClip;
|
2013-10-17 17:56:10 +00:00
|
|
|
|
2014-05-19 13:53:10 +00:00
|
|
|
SkString fClipStackData;
|
|
|
|
bool fCalledAddStackData;
|
|
|
|
SkPath fSaveDevPath;
|
|
|
|
|
2013-02-06 20:13:54 +00:00
|
|
|
bool fOverdrawViz;
|
2015-03-26 14:24:48 +00:00
|
|
|
bool fOverrideFilterQuality;
|
|
|
|
SkFilterQuality fFilterQuality;
|
2016-02-12 20:06:53 +00:00
|
|
|
SkColor fClipVizColor;
|
2016-12-20 21:48:59 +00:00
|
|
|
bool fDrawGpuOpBounds;
|
2012-06-29 14:21:22 +00:00
|
|
|
|
2014-03-04 03:02:32 +00:00
|
|
|
/**
|
2014-03-03 23:25:41 +00:00
|
|
|
The active saveLayer commands at a given point in the renderering.
|
|
|
|
Only used when "mega" visualization is enabled.
|
|
|
|
*/
|
|
|
|
SkTDArray<SkDrawCommand*> fActiveLayers;
|
|
|
|
|
2012-06-29 14:21:22 +00:00
|
|
|
/**
|
2017-09-06 17:07:21 +00:00
|
|
|
Adds the command to the class' vector of commands.
|
2012-06-29 14:21:22 +00:00
|
|
|
@param command The draw command for execution
|
|
|
|
*/
|
|
|
|
void addDrawCommand(SkDrawCommand* command);
|
2012-08-01 15:57:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Applies any panning and zooming the user has specified before
|
|
|
|
drawing anything else into the canvas.
|
|
|
|
*/
|
|
|
|
void applyUserTransform(SkCanvas* canvas);
|
2013-01-31 15:56:22 +00:00
|
|
|
|
2014-05-19 13:53:10 +00:00
|
|
|
void resetClipStackData() { fClipStackData.reset(); fCalledAddStackData = false; }
|
|
|
|
|
2016-12-09 14:00:50 +00:00
|
|
|
void addClipStackData(const SkPath& devPath, const SkPath& operand, SkClipOp elementOp);
|
2014-05-19 13:53:10 +00:00
|
|
|
void addPathData(const SkPath& path, const char* pathName);
|
|
|
|
bool lastClipStackData(const SkPath& devPath);
|
|
|
|
void outputConicPoints(const SkPoint* pts, SkScalar weight);
|
|
|
|
void outputPoints(const SkPoint* pts, int count);
|
|
|
|
void outputPointsCommon(const SkPoint* pts, int count);
|
|
|
|
void outputScalar(SkScalar num);
|
2014-05-20 03:05:34 +00:00
|
|
|
|
2016-03-10 21:29:36 +00:00
|
|
|
GrAuditTrail* getAuditTrail(SkCanvas*);
|
|
|
|
|
2016-12-20 21:48:59 +00:00
|
|
|
void drawAndCollectOps(int n, SkCanvas*);
|
2016-03-10 21:29:36 +00:00
|
|
|
void cleanupAuditTrail(SkCanvas*);
|
2015-03-26 14:24:48 +00:00
|
|
|
|
2013-01-31 15:56:22 +00:00
|
|
|
typedef SkCanvas INHERITED;
|
2012-06-29 14:21:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|