aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkImageGenerator.h
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2015-12-02 14:19:47 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-12-02 14:19:47 -0800
commit7850eb2f357c215b2e2c50bf16d6c6df38c7967f (patch)
treea67b456a7b21c9ee3dbec07772882dd117672b52 /include/core/SkImageGenerator.h
parentdc5685ac3752e90dd68179e9f1675ff6f15ed600 (diff)
API to support native scaling by image-generator
Diffstat (limited to 'include/core/SkImageGenerator.h')
-rw-r--r--include/core/SkImageGenerator.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/include/core/SkImageGenerator.h b/include/core/SkImageGenerator.h
index 3d508ddfb1..66db5e4884 100644
--- a/include/core/SkImageGenerator.h
+++ b/include/core/SkImageGenerator.h
@@ -152,6 +152,49 @@ public:
*/
GrTexture* generateTexture(GrContext*, const SkIRect* subset = nullptr);
+ struct SupportedSizes {
+ SkISize fSizes[2];
+ };
+
+ /**
+ * Some generators can efficiently scale their contents. If this is supported, the generator
+ * may only support certain scaled dimensions. Call this with the desired scale factor,
+ * and it will return true if scaling is supported, and in supportedSizes[] it will return
+ * the nearest supported dimensions.
+ *
+ * If no native scaling is supported, or scale is invalid (e.g. scale <= 0 || scale > 1)
+ * this will return false, and the supportedsizes will be undefined.
+ */
+ bool computeScaledDimensions(SkScalar scale, SupportedSizes*);
+
+ /**
+ * Scale the generator's pixels to fit into scaledSize.
+ * This routine also support retrieving only a subset of the pixels. That subset is specified
+ * by the following rectangle (in the scaled space):
+ *
+ * subset = SkIRect::MakeXYWH(subsetOrigin.x(), subsetOrigin.y(),
+ * subsetPixels.width(), subsetPixels.height())
+ *
+ * If subset is not contained inside the scaledSize, this returns false.
+ *
+ * whole = SkIRect::MakeWH(scaledSize.width(), scaledSize.height())
+ * if (!whole.contains(subset)) {
+ * return false;
+ * }
+ *
+ * If the requested colortype/alphatype in pixels is not supported,
+ * or the requested scaledSize is not supported, or the generator encounters an error,
+ * this returns false.
+ */
+ bool generateScaledPixels(const SkISize& scaledSize, const SkIPoint& subsetOrigin,
+ const SkPixmap& subsetPixels);
+
+ bool generateScaledPixels(const SkPixmap& scaledPixels) {
+ return this->generateScaledPixels(SkISize::Make(scaledPixels.width(),
+ scaledPixels.height()),
+ SkIPoint::Make(0, 0), scaledPixels);
+ }
+
/**
* If the default image decoder system can interpret the specified (encoded) data, then
* this returns a new ImageGenerator for it. Otherwise this returns NULL. Either way
@@ -199,6 +242,13 @@ protected:
return nullptr;
}
+ virtual bool onComputeScaledDimensions(SkScalar, SupportedSizes*) {
+ return false;
+ }
+ virtual bool onGenerateScaledPixels(const SkISize&, const SkIPoint&, const SkPixmap&) {
+ return false;
+ }
+
bool tryGenerateBitmap(SkBitmap* bm, const SkImageInfo* optionalInfo, SkBitmap::Allocator*);
private: