| Index: src/utils/debugger/SkDrawCommand.h
|
| ===================================================================
|
| --- src/utils/debugger/SkDrawCommand.h (revision 13558)
|
| +++ src/utils/debugger/SkDrawCommand.h (working copy)
|
| @@ -429,6 +429,20 @@
|
| typedef SkDrawCommand INHERITED;
|
| };
|
|
|
| +class SkDrawDRRectCommand : public SkDrawCommand {
|
| +public:
|
| + SkDrawDRRectCommand(const SkRRect& outer, const SkRRect& inner,
|
| + const SkPaint& paint);
|
| + virtual void execute(SkCanvas* canvas) SK_OVERRIDE;
|
| + virtual bool render(SkCanvas* canvas) const SK_OVERRIDE;
|
| +private:
|
| + SkRRect fOuter;
|
| + SkRRect fInner;
|
| + SkPaint fPaint;
|
| +
|
| + typedef SkDrawCommand INHERITED;
|
| +};
|
| +
|
| class SkDrawSpriteCommand : public SkDrawCommand {
|
| public:
|
| SkDrawSpriteCommand(const SkBitmap& bitmap, int left, int top, const SkPaint* paint);
|
|
|