783fe16b8e
Committed: https://skia.googlesource.com/skia/+/7ef197255deb4e2fa64c03c7130d56ddf164e83c Review URL: https://codereview.chromium.org/829983003
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkDrawPictureCallback_DEFINED
|
|
#define SkDrawPictureCallback_DEFINED
|
|
|
|
#include "SkTypes.h"
|
|
|
|
#ifdef SK_LEGACY_DRAWPICTURECALLBACK
|
|
#include "SkPicture.h"
|
|
|
|
/**
|
|
* Subclasses of this can be passed to canvas.drawPicture(). During the drawing
|
|
* of the picture, this callback will periodically be invoked. If its
|
|
* abortDrawing() returns true, then picture playback will be interrupted.
|
|
*
|
|
* The resulting drawing is undefined, as there is no guarantee how often the
|
|
* callback will be invoked. If the abort happens inside some level of nested
|
|
* calls to save(), restore will automatically be called to return the state
|
|
* to the same level it was before the drawPicture call was made.
|
|
*/
|
|
class SK_API SkDrawPictureCallback : public SkPicture::AbortCallback {
|
|
public:
|
|
virtual bool abortDrawing() = 0;
|
|
|
|
bool abort() SK_OVERRIDE { return this->abortDrawing(); }
|
|
};
|
|
#endif
|
|
|
|
#endif // SkDrawPictureCallback_DEFINED
|