ef7bdfac61
Removed CocoaDebugger from experimental Slight changes to SkOSMenu Bug fixes for NetPipeReader and DrawingBoard git-svn-id: http://skia.googlecode.com/svn/trunk@2102 2bbb7eff-a529-9590-31e7-b0007b416f81
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
|
|
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef SkDebugDumper_DEFINED
|
|
#define SkDebugDumper_DEFINED
|
|
#include "SkDumpCanvas.h"
|
|
#include "SkEvent.h"
|
|
|
|
/** Formats the draw commands, and send them to a function-pointer provided
|
|
by the caller.
|
|
*/
|
|
class SkDebugDumper : public SkDumpCanvas::Dumper {
|
|
public:
|
|
SkDebugDumper(SkEventSinkID cID, SkEventSinkID clID, SkEventSinkID ipID);
|
|
// 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[],
|
|
const SkPaint*);
|
|
|
|
void load() { fInit = true; };
|
|
void unload() { fInit = false; fCount = 0;};
|
|
void disable() { fDisabled = true; };
|
|
void enable() { fDisabled = false; };
|
|
private:
|
|
int fCount;
|
|
bool fInit;
|
|
bool fDisabled;
|
|
SkEventSinkID fContentID;
|
|
SkEventSinkID fCommandsID;
|
|
SkEventSinkID fStateID;
|
|
|
|
typedef SkDumpCanvas::Dumper INHERITED;
|
|
};
|
|
#endif |