8c89c528f3
Reason for revert: Chromium clients updated, this should be canary-proof now. Original issue's description: > Revert of SkDrawCommand scrubbing (patchset #2 id:20001 of https://codereview.chromium.org/706363002/) > > Reason for revert: > Canary borkage. > > Original issue's description: > > SkDrawCommand scrubbing > > > > Remove unused ctor, constify, etc. > > > > R=robertphillips@google.com > > > > Committed: https://skia.googlesource.com/skia/+/1931ec5b5dac68f1e452af0c65161bdce35b2dec > > TBR=robertphillips@google.com > NOTREECHECKS=true > NOTRY=true > > Committed: https://skia.googlesource.com/skia/+/9063ddd511f8e0d8c7454950cbc56e273678bf60 TBR=robertphillips@google.com NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/708333002
140 lines
3.1 KiB
C++
140 lines
3.1 KiB
C++
|
|
/*
|
|
* 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 SKDEBUGGER_H_
|
|
#define SKDEBUGGER_H_
|
|
|
|
#include "SkDebugCanvas.h"
|
|
#include "SkPicture.h"
|
|
#include "SkTArray.h"
|
|
|
|
class SkString;
|
|
|
|
class SkDebugger {
|
|
public:
|
|
SkDebugger();
|
|
|
|
~SkDebugger();
|
|
|
|
void setIndex(int index) {
|
|
fIndex = index;
|
|
}
|
|
void draw(SkCanvas* canvas) {
|
|
if (fIndex > 0) {
|
|
fDebugCanvas->drawTo(canvas, fIndex);
|
|
}
|
|
}
|
|
|
|
void step();
|
|
void stepBack();
|
|
void play();
|
|
void rewind();
|
|
|
|
bool isCommandVisible(int index) {
|
|
return fDebugCanvas->getDrawCommandVisibilityAt(index);
|
|
}
|
|
|
|
void setCommandVisible(int index, bool isVisible) {
|
|
fDebugCanvas->toggleCommand(index, isVisible);
|
|
}
|
|
|
|
SkTArray<SkString>* getDrawCommandsAsStrings() {
|
|
return fDebugCanvas->getDrawCommandsAsStrings();
|
|
}
|
|
|
|
SkTDArray<size_t>* getDrawCommandOffsets() {
|
|
return fDebugCanvas->getDrawCommandOffsets();
|
|
}
|
|
|
|
const SkTDArray<SkDrawCommand*>& getDrawCommands() const {
|
|
return fDebugCanvas->getDrawCommands();
|
|
}
|
|
|
|
void highlightCurrentCommand(bool on) {
|
|
fDebugCanvas->toggleFilter(on);
|
|
}
|
|
|
|
void setWindowSize(int width, int height) { fDebugCanvas->setWindowSize(width, height); }
|
|
|
|
void loadPicture(SkPicture* picture);
|
|
|
|
SkPicture* copyPicture();
|
|
|
|
int getSize() {
|
|
return fDebugCanvas->getSize();
|
|
}
|
|
|
|
void setUserMatrix(SkMatrix userMatrix) {
|
|
// Should this live in debugger instead?
|
|
fDebugCanvas->setUserMatrix(userMatrix);
|
|
}
|
|
|
|
int getCommandAtPoint(int x, int y, int index) {
|
|
return fDebugCanvas->getCommandAtPoint(x, y, index);
|
|
}
|
|
|
|
const SkTDArray<SkString*>* getCommandInfo(int index) const {
|
|
return fDebugCanvas->getCommandInfo(index);
|
|
}
|
|
|
|
const SkMatrix& getCurrentMatrix() {
|
|
return fDebugCanvas->getCurrentMatrix();
|
|
}
|
|
|
|
const SkIRect& getCurrentClip() {
|
|
return fDebugCanvas->getCurrentClip();
|
|
}
|
|
|
|
SkRect pictureCull() const {
|
|
return NULL == fPicture ? SkRect::MakeEmpty() : fPicture->cullRect();
|
|
}
|
|
|
|
int index() {
|
|
return fIndex;
|
|
}
|
|
|
|
void setOverdrawViz(bool overDrawViz) {
|
|
if (fDebugCanvas) {
|
|
fDebugCanvas->setOverdrawViz(overDrawViz);
|
|
}
|
|
}
|
|
|
|
void setPathOps(bool pathOps) {
|
|
if (fDebugCanvas) {
|
|
fDebugCanvas->setAllowSimplifyClip(pathOps);
|
|
}
|
|
}
|
|
|
|
void setMegaViz(bool megaViz) {
|
|
if (fDebugCanvas) {
|
|
fDebugCanvas->setMegaVizMode(megaViz);
|
|
}
|
|
}
|
|
|
|
void setTexFilterOverride(bool texFilterOverride, SkPaint::FilterLevel level) {
|
|
if (fDebugCanvas) {
|
|
fDebugCanvas->overrideTexFiltering(texFilterOverride, level);
|
|
}
|
|
}
|
|
|
|
void getOverviewText(const SkTDArray<double>* typeTimes, double totTime,
|
|
SkString* overview, int numRuns);
|
|
|
|
void getClipStackText(SkString* clipStack);
|
|
|
|
private:
|
|
SkDebugCanvas* fDebugCanvas;
|
|
SkPicture* fPicture;
|
|
|
|
int fIndex;
|
|
};
|
|
|
|
|
|
#endif /* SKDEBUGGER_H_ */
|