skia2/modules/sksg/include/SkSGImage.h
Florin Malita 62c6bd910a [skottie] Multi-frame image support
Extend the image asset provider API to support animated/multi-frame images.

Add a GM based on SkAnimCodecPlayer + animated public domain GIF
(source: https://giphy.com/explore/public-domain).

Bug: skia:
Change-Id: Iaa596e01a7626ca6574db1ebc90632f5a9a02bdc
Reviewed-on: https://skia-review.googlesource.com/159162
Commit-Queue: Florin Malita <fmalita@chromium.org>
Reviewed-by: Mike Reed <reed@google.com>
2018-10-03 19:02:35 +00:00

51 lines
1.1 KiB
C++

/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkSGImage_DEFINED
#define SkSGImage_DEFINED
#include "SkSGRenderNode.h"
#include "SkFilterQuality.h"
class SkImage;
namespace sksg {
/**
* Concrete rendering node, wrapping an SkImage.
*
*/
class Image final : public RenderNode {
public:
static sk_sp<Image> Make(sk_sp<SkImage> image) {
return sk_sp<Image>(new Image(std::move(image)));
}
SG_ATTRIBUTE(Image, sk_sp<SkImage> , fImage )
SG_ATTRIBUTE(Quality , SkFilterQuality, fQuality )
SG_ATTRIBUTE(AntiAlias, bool , fAntiAlias)
protected:
explicit Image(sk_sp<SkImage>);
void onRender(SkCanvas*, const RenderContext*) const override;
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
private:
sk_sp<SkImage> fImage;
SkFilterQuality fQuality = kLow_SkFilterQuality;
bool fAntiAlias = true;
typedef RenderNode INHERITED;
};
} // namespace sksg
#endif // SkSGImage_DEFINED