efd99cc928
Get SkPicture.h ready for documenting. - remove private methods - move private forward declarations - name parameters R=reed@google.com, bsalomon@google.com Bug: skia:6898 Change-Id: I28829111203d8ae2a4661cf02c99023403aa0df0 Reviewed-on: https://skia-review.googlesource.com/134120 Reviewed-by: Brian Salomon <bsalomon@google.com> Reviewed-by: Cary Clark <caryclark@skia.org> Commit-Queue: Cary Clark <caryclark@google.com>
174 lines
7.2 KiB
C++
174 lines
7.2 KiB
C++
/*
|
|
* Copyright 2007 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkPicture_DEFINED
|
|
#define SkPicture_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "SkRect.h"
|
|
#include "SkTypes.h"
|
|
|
|
class SkCanvas;
|
|
class SkData;
|
|
struct SkDeserialProcs;
|
|
class SkImage;
|
|
struct SkSerialProcs;
|
|
class SkStream;
|
|
class SkWStream;
|
|
|
|
/** \class SkPicture
|
|
|
|
An SkPicture records drawing commands made to a canvas to be played back at a later time.
|
|
This base class handles serialization and a few other miscellany.
|
|
*/
|
|
class SK_API SkPicture : public SkRefCnt {
|
|
public:
|
|
/**
|
|
* Recreate a picture that was serialized into a stream or data.
|
|
*/
|
|
|
|
static sk_sp<SkPicture> MakeFromStream(SkStream* stream,
|
|
const SkDeserialProcs* procs = nullptr);
|
|
static sk_sp<SkPicture> MakeFromData(const SkData* data,
|
|
const SkDeserialProcs* procs = nullptr);
|
|
static sk_sp<SkPicture> MakeFromData(const void* data, size_t size,
|
|
const SkDeserialProcs* procs = nullptr);
|
|
|
|
/**
|
|
* Subclasses of this can be passed to playback(). During the playback
|
|
* of the picture, this callback will periodically be invoked. If its
|
|
* abort() 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 playback call was made.
|
|
*/
|
|
class SK_API AbortCallback {
|
|
public:
|
|
AbortCallback() {}
|
|
virtual ~AbortCallback() {}
|
|
virtual bool abort() = 0;
|
|
};
|
|
|
|
/** Replays the drawing commands on the specified canvas. Note that
|
|
this has the effect of unfurling this picture into the destination
|
|
canvas. Using the SkCanvas::drawPicture entry point gives the destination
|
|
canvas the option of just taking a ref.
|
|
@param canvas the canvas receiving the drawing commands.
|
|
@param callback a callback that allows interruption of playback
|
|
*/
|
|
virtual void playback(SkCanvas* canvas, AbortCallback* callback = nullptr) const = 0;
|
|
|
|
/** Return a cull rect for this picture.
|
|
Ops recorded into this picture that attempt to draw outside the cull might not be drawn.
|
|
*/
|
|
virtual SkRect cullRect() const = 0;
|
|
|
|
/** Returns a non-zero value unique among all pictures. */
|
|
uint32_t uniqueID() const;
|
|
|
|
sk_sp<SkData> serialize(const SkSerialProcs* procs = nullptr) const;
|
|
void serialize(SkWStream* stream, const SkSerialProcs* procs = nullptr) const;
|
|
|
|
/**
|
|
* Return a placeholder SkPicture.
|
|
* This placeholder does not draw anything itself. It has a distinct uniqueID()
|
|
* (just like all SkPictures) and will always be visible to SkSerialProcs.
|
|
* @param cull the placeholder's dimensions
|
|
*/
|
|
static sk_sp<SkPicture> MakePlaceholder(SkRect cull);
|
|
|
|
/** Return the approximate number of operations in this picture. This
|
|
* number may be greater or less than the number of SkCanvas calls
|
|
* recorded: some calls may be recorded as more than one operation, or some
|
|
* calls may be optimized away.
|
|
*/
|
|
virtual int approximateOpCount() const = 0;
|
|
|
|
/** Returns the approximate byte size of this picture, not including large ref'd objects. */
|
|
virtual size_t approximateBytesUsed() const = 0;
|
|
|
|
private:
|
|
// Subclass whitelist.
|
|
SkPicture();
|
|
friend class SkBigPicture;
|
|
friend class SkEmptyPicture;
|
|
friend class SkPicturePriv;
|
|
template <typename> friend class SkMiniPicture;
|
|
|
|
void serialize(SkWStream*, const SkSerialProcs*, class SkRefCntSet* typefaces) const;
|
|
static sk_sp<SkPicture> MakeFromStream(SkStream*, const SkDeserialProcs*,
|
|
class SkTypefacePlayback*);
|
|
friend class SkPictureData;
|
|
|
|
/** Return true if the SkStream/Buffer represents a serialized picture, and
|
|
fills out SkPictInfo. After this function returns, the data source is not
|
|
rewound so it will have to be manually reset before passing to
|
|
MakeFromStream or MakeFromBuffer. Note, MakeFromStream and
|
|
MakeFromBuffer perform this check internally so these entry points are
|
|
intended for stand alone tools.
|
|
If false is returned, SkPictInfo is unmodified.
|
|
*/
|
|
static bool StreamIsSKP(SkStream*, struct SkPictInfo*);
|
|
static bool BufferIsSKP(class SkReadBuffer*, struct SkPictInfo*);
|
|
friend bool SkPicture_StreamIsSKP(SkStream*, struct SkPictInfo*);
|
|
|
|
// Returns NULL if this is not an SkBigPicture.
|
|
virtual const class SkBigPicture* asSkBigPicture() const { return nullptr; }
|
|
|
|
friend struct SkPathCounter;
|
|
|
|
// V35: Store SkRect (rather then width & height) in header
|
|
// V36: Remove (obsolete) alphatype from SkColorTable
|
|
// V37: Added shadow only option to SkDropShadowImageFilter (last version to record CLEAR)
|
|
// V38: Added PictureResolution option to SkPictureImageFilter
|
|
// V39: Added FilterLevel option to SkPictureImageFilter
|
|
// V40: Remove UniqueID serialization from SkImageFilter.
|
|
// V41: Added serialization of SkBitmapSource's filterQuality parameter
|
|
// V42: Added a bool to SkPictureShader serialization to indicate did-we-serialize-a-picture?
|
|
// V43: Added DRAW_IMAGE and DRAW_IMAGE_RECT opt codes to serialized data
|
|
// V44: Move annotations from paint to drawAnnotation
|
|
// V45: Add invNormRotation to SkLightingShader.
|
|
// V46: Add drawTextRSXform
|
|
// V47: Add occluder rect to SkBlurMaskFilter
|
|
// V48: Read and write extended SkTextBlobs.
|
|
// V49: Gradients serialized as SkColor4f + SkColorSpace
|
|
// V50: SkXfermode -> SkBlendMode
|
|
// V51: more SkXfermode -> SkBlendMode
|
|
// V52: Remove SkTextBlob::fRunCount
|
|
// V53: SaveLayerRec clip mask
|
|
// V54: ComposeShader can use a Mode or a Lerp
|
|
// V55: Drop blendmode[] from MergeImageFilter
|
|
// V56: Add TileMode in SkBlurImageFilter.
|
|
// V57: Sweep tiling info.
|
|
// V58: No more 2pt conical flipping.
|
|
// V59: No more LocalSpace option on PictureImageFilter
|
|
// V60: Remove flags in picture header
|
|
// V61: Change SkDrawPictureRec to take two colors rather than two alphas
|
|
// V62: Don't negate size of custom encoded images (don't write origin x,y either)
|
|
// V63: Store image bounds (including origin) instead of just width/height to support subsets
|
|
|
|
// Only SKPs within the min/current picture version range (inclusive) can be read.
|
|
static const uint32_t MIN_PICTURE_VERSION = 56; // august 2017
|
|
static const uint32_t CURRENT_PICTURE_VERSION = 63;
|
|
|
|
static_assert(MIN_PICTURE_VERSION <= 62, "Remove kFontAxes_bad from SkFontDescriptor.cpp");
|
|
|
|
static bool IsValidPictInfo(const struct SkPictInfo& info);
|
|
static sk_sp<SkPicture> Forwardport(const struct SkPictInfo&,
|
|
const class SkPictureData*,
|
|
class SkReadBuffer* buffer);
|
|
|
|
struct SkPictInfo createHeader() const;
|
|
class SkPictureData* backport() const;
|
|
|
|
mutable uint32_t fUniqueID;
|
|
};
|
|
|
|
#endif
|