blob: 3e0eb65f6fff115286ae9b4a3aa907c2ef8ad50c [file] [log] [blame]
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkPictureShader.h"
9
10#include "SkBitmap.h"
11#include "SkBitmapProcShader.h"
12#include "SkCanvas.h"
13#include "SkMatrixUtils.h"
14#include "SkPicture.h"
15#include "SkReadBuffer.h"
16
17#if SK_SUPPORT_GPU
18#include "GrContext.h"
19#endif
20
robertphillipse8464992014-07-14 07:53:26 -070021SkPictureShader::SkPictureShader(const SkPicture* picture, TileMode tmx, TileMode tmy,
fmalitab5f78262014-08-06 13:07:15 -070022 const SkMatrix* localMatrix, const SkRect* tile)
commit-bot@chromium.org5aacfe92014-05-02 21:23:52 +000023 : INHERITED(localMatrix)
24 , fPicture(SkRef(picture))
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000025 , fTmx(tmx)
fmalitab5f78262014-08-06 13:07:15 -070026 , fTmy(tmy) {
27 fTile = tile ? *tile : SkRect::MakeWH(SkIntToScalar(picture->width()),
28 SkIntToScalar(picture->height()));
29}
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000030
reed9fa60da2014-08-21 07:59:51 -070031#ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
32SkPictureShader::SkPictureShader(SkReadBuffer& buffer) : INHERITED(buffer) {
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000033 fTmx = static_cast<SkShader::TileMode>(buffer.read32());
34 fTmy = static_cast<SkShader::TileMode>(buffer.read32());
fmalitab5f78262014-08-06 13:07:15 -070035 buffer.readRect(&fTile);
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000036 fPicture = SkPicture::CreateFromBuffer(buffer);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000037}
reed9fa60da2014-08-21 07:59:51 -070038#endif
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000039
40SkPictureShader::~SkPictureShader() {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000041 fPicture->unref();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000042}
43
robertphillipse8464992014-07-14 07:53:26 -070044SkPictureShader* SkPictureShader::Create(const SkPicture* picture, TileMode tmx, TileMode tmy,
fmalitab5f78262014-08-06 13:07:15 -070045 const SkMatrix* localMatrix, const SkRect* tile) {
46 if (!picture || 0 == picture->width() || 0 == picture->height()
47 || (NULL != tile && tile->isEmpty())) {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000048 return NULL;
49 }
fmalitab5f78262014-08-06 13:07:15 -070050 return SkNEW_ARGS(SkPictureShader, (picture, tmx, tmy, localMatrix, tile));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000051}
52
reed9fa60da2014-08-21 07:59:51 -070053SkFlattenable* SkPictureShader::CreateProc(SkReadBuffer& buffer) {
54 SkMatrix lm;
55 buffer.readMatrix(&lm);
56 TileMode mx = (TileMode)buffer.read32();
57 TileMode my = (TileMode)buffer.read32();
58 SkRect tile;
59 buffer.readRect(&tile);
60 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromBuffer(buffer));
61 return SkPictureShader::Create(picture, mx, my, &lm, &tile);
62}
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000063
reed9fa60da2014-08-21 07:59:51 -070064void SkPictureShader::flatten(SkWriteBuffer& buffer) const {
65 buffer.writeMatrix(this->getLocalMatrix());
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000066 buffer.write32(fTmx);
67 buffer.write32(fTmy);
fmalitab5f78262014-08-06 13:07:15 -070068 buffer.writeRect(fTile);
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000069 fPicture->flatten(buffer);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000070}
71
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000072SkShader* SkPictureShader::refBitmapShader(const SkMatrix& matrix, const SkMatrix* localM) const {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000073 SkASSERT(fPicture && fPicture->width() > 0 && fPicture->height() > 0);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000074
75 SkMatrix m;
commit-bot@chromium.org5970f622014-05-12 20:42:21 +000076 m.setConcat(matrix, this->getLocalMatrix());
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000077 if (localM) {
78 m.preConcat(*localM);
79 }
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000080
81 // Use a rotation-invariant scale
82 SkPoint scale;
83 if (!SkDecomposeUpper2x2(m, NULL, &scale, NULL)) {
84 // Decomposition failed, use an approximation.
85 scale.set(SkScalarSqrt(m.getScaleX() * m.getScaleX() + m.getSkewX() * m.getSkewX()),
86 SkScalarSqrt(m.getScaleY() * m.getScaleY() + m.getSkewY() * m.getSkewY()));
87 }
fmalitab5f78262014-08-06 13:07:15 -070088 SkSize scaledSize = SkSize::Make(scale.x() * fTile.width(), scale.y() * fTile.height());
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000089
fmalitabb204f42014-08-07 08:39:24 -070090 // Clamp the tile size to about 16M pixels
91 static const SkScalar kMaxTileArea = 4096 * 4096;
92 SkScalar tileArea = SkScalarMul(scaledSize.width(), scaledSize.height());
93 if (tileArea > kMaxTileArea) {
94 SkScalar clampScale = SkScalarSqrt(SkScalarDiv(kMaxTileArea, tileArea));
95 scaledSize.set(SkScalarMul(scaledSize.width(), clampScale),
96 SkScalarMul(scaledSize.height(), clampScale));
97 }
98
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000099 SkISize tileSize = scaledSize.toRound();
100 if (tileSize.isEmpty()) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000101 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000102 }
103
fmalitabb204f42014-08-07 08:39:24 -0700104 // The actual scale, compensating for rounding & clamping.
fmalitab5f78262014-08-06 13:07:15 -0700105 SkSize tileScale = SkSize::Make(SkIntToScalar(tileSize.width()) / fTile.width(),
106 SkIntToScalar(tileSize.height()) / fTile.height());
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000107
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000108 SkAutoMutexAcquire ama(fCachedBitmapShaderMutex);
109
scroggo1b0aa002014-07-11 12:19:00 -0700110 if (!fCachedBitmapShader || tileScale != fCachedTileScale) {
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000111 SkBitmap bm;
112 if (!bm.allocN32Pixels(tileSize.width(), tileSize.height())) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000113 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000114 }
115 bm.eraseColor(SK_ColorTRANSPARENT);
116
117 SkCanvas canvas(bm);
118 canvas.scale(tileScale.width(), tileScale.height());
fmalitab5f78262014-08-06 13:07:15 -0700119 canvas.translate(fTile.x(), fTile.y());
robertphillips9b14f262014-06-04 05:40:44 -0700120 canvas.drawPicture(fPicture);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000121
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000122 fCachedTileScale = tileScale;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000123
124 SkMatrix shaderMatrix = this->getLocalMatrix();
125 shaderMatrix.preScale(1 / tileScale.width(), 1 / tileScale.height());
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +0000126 fCachedBitmapShader.reset(CreateBitmapShader(bm, fTmx, fTmy, &shaderMatrix));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000127 }
128
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000129 // Increment the ref counter inside the mutex to ensure the returned pointer is still valid.
130 // Otherwise, the pointer may have been overwritten on a different thread before the object's
131 // ref count was incremented.
132 fCachedBitmapShader.get()->ref();
133 return fCachedBitmapShader;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000134}
135
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000136size_t SkPictureShader::contextSize() const {
137 return sizeof(PictureShaderContext);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000138}
139
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000140SkShader::Context* SkPictureShader::onCreateContext(const ContextRec& rec, void* storage) const {
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +0000141 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(*rec.fMatrix, rec.fLocalMatrix));
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000142 if (NULL == bitmapShader.get()) {
143 return NULL;
144 }
commit-bot@chromium.orgf03f9ff2014-05-06 13:43:17 +0000145 return PictureShaderContext::Create(storage, *this, rec, bitmapShader);
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000146}
147
148/////////////////////////////////////////////////////////////////////////////////////////
149
150SkShader::Context* SkPictureShader::PictureShaderContext::Create(void* storage,
151 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) {
152 PictureShaderContext* ctx = SkNEW_PLACEMENT_ARGS(storage, PictureShaderContext,
153 (shader, rec, bitmapShader));
154 if (NULL == ctx->fBitmapShaderContext) {
155 ctx->~PictureShaderContext();
156 ctx = NULL;
157 }
158 return ctx;
159}
160
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000161SkPictureShader::PictureShaderContext::PictureShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000162 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader)
163 : INHERITED(shader, rec)
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000164 , fBitmapShader(SkRef(bitmapShader))
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000165{
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000166 fBitmapShaderContextStorage = sk_malloc_throw(bitmapShader->contextSize());
167 fBitmapShaderContext = bitmapShader->createContext(rec, fBitmapShaderContextStorage);
168 //if fBitmapShaderContext is null, we are invalid
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000169}
170
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000171SkPictureShader::PictureShaderContext::~PictureShaderContext() {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000172 if (fBitmapShaderContext) {
173 fBitmapShaderContext->~Context();
174 }
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000175 sk_free(fBitmapShaderContextStorage);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000176}
177
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000178uint32_t SkPictureShader::PictureShaderContext::getFlags() const {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000179 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000180 return fBitmapShaderContext->getFlags();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000181}
182
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000183SkShader::Context::ShadeProc SkPictureShader::PictureShaderContext::asAShadeProc(void** ctx) {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000184 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000185 return fBitmapShaderContext->asAShadeProc(ctx);
186}
187
188void SkPictureShader::PictureShaderContext::shadeSpan(int x, int y, SkPMColor dstC[], int count) {
189 SkASSERT(fBitmapShaderContext);
190 fBitmapShaderContext->shadeSpan(x, y, dstC, count);
191}
192
193void SkPictureShader::PictureShaderContext::shadeSpan16(int x, int y, uint16_t dstC[], int count) {
194 SkASSERT(fBitmapShaderContext);
195 fBitmapShaderContext->shadeSpan16(x, y, dstC, count);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000196}
197
198#ifndef SK_IGNORE_TO_STRING
199void SkPictureShader::toString(SkString* str) const {
200 static const char* gTileModeName[SkShader::kTileModeCount] = {
201 "clamp", "repeat", "mirror"
202 };
203
204 str->appendf("PictureShader: [%d:%d] ",
205 fPicture ? fPicture->width() : 0,
206 fPicture ? fPicture->height() : 0);
207
208 str->appendf("(%s, %s)", gTileModeName[fTmx], gTileModeName[fTmy]);
209
210 this->INHERITED::toString(str);
211}
212#endif
213
214#if SK_SUPPORT_GPU
dandov9de5b512014-06-10 14:38:28 -0700215bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700216 const SkMatrix* localMatrix, GrColor* paintColor,
217 GrEffect** effect) const {
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000218 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(context->getMatrix(), localMatrix));
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000219 if (!bitmapShader) {
dandov9de5b512014-06-10 14:38:28 -0700220 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000221 }
bsalomon83d081a2014-07-08 09:56:10 -0700222 return bitmapShader->asNewEffect(context, paint, NULL, paintColor, effect);
dandov9de5b512014-06-10 14:38:28 -0700223}
224#else
225bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700226 const SkMatrix* localMatrix, GrColor* paintColor,
227 GrEffect** effect) const {
dandov9de5b512014-06-10 14:38:28 -0700228 SkDEBUGFAIL("Should not call in GPU-less build");
229 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000230}
231#endif