blob: 2a6aae5f4ed477db2daf3c781d6d98c1ada11851 [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
31SkPictureShader::SkPictureShader(SkReadBuffer& buffer)
32 : INHERITED(buffer) {
33 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}
38
39SkPictureShader::~SkPictureShader() {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000040 fPicture->unref();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000041}
42
robertphillipse8464992014-07-14 07:53:26 -070043SkPictureShader* SkPictureShader::Create(const SkPicture* picture, TileMode tmx, TileMode tmy,
fmalitab5f78262014-08-06 13:07:15 -070044 const SkMatrix* localMatrix, const SkRect* tile) {
45 if (!picture || 0 == picture->width() || 0 == picture->height()
46 || (NULL != tile && tile->isEmpty())) {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000047 return NULL;
48 }
fmalitab5f78262014-08-06 13:07:15 -070049 return SkNEW_ARGS(SkPictureShader, (picture, tmx, tmy, localMatrix, tile));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000050}
51
52void SkPictureShader::flatten(SkWriteBuffer& buffer) const {
53 this->INHERITED::flatten(buffer);
54
55 buffer.write32(fTmx);
56 buffer.write32(fTmy);
fmalitab5f78262014-08-06 13:07:15 -070057 buffer.writeRect(fTile);
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000058 fPicture->flatten(buffer);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000059}
60
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000061SkShader* SkPictureShader::refBitmapShader(const SkMatrix& matrix, const SkMatrix* localM) const {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000062 SkASSERT(fPicture && fPicture->width() > 0 && fPicture->height() > 0);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000063
64 SkMatrix m;
commit-bot@chromium.org5970f622014-05-12 20:42:21 +000065 m.setConcat(matrix, this->getLocalMatrix());
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000066 if (localM) {
67 m.preConcat(*localM);
68 }
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000069
70 // Use a rotation-invariant scale
71 SkPoint scale;
72 if (!SkDecomposeUpper2x2(m, NULL, &scale, NULL)) {
73 // Decomposition failed, use an approximation.
74 scale.set(SkScalarSqrt(m.getScaleX() * m.getScaleX() + m.getSkewX() * m.getSkewX()),
75 SkScalarSqrt(m.getScaleY() * m.getScaleY() + m.getSkewY() * m.getSkewY()));
76 }
fmalitab5f78262014-08-06 13:07:15 -070077 SkSize scaledSize = SkSize::Make(scale.x() * fTile.width(), scale.y() * fTile.height());
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000078
79 SkISize tileSize = scaledSize.toRound();
80 if (tileSize.isEmpty()) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000081 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000082 }
83
84 // The actual scale, compensating for rounding.
fmalitab5f78262014-08-06 13:07:15 -070085 SkSize tileScale = SkSize::Make(SkIntToScalar(tileSize.width()) / fTile.width(),
86 SkIntToScalar(tileSize.height()) / fTile.height());
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000087
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000088 SkAutoMutexAcquire ama(fCachedBitmapShaderMutex);
89
scroggo1b0aa002014-07-11 12:19:00 -070090 if (!fCachedBitmapShader || tileScale != fCachedTileScale) {
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000091 SkBitmap bm;
92 if (!bm.allocN32Pixels(tileSize.width(), tileSize.height())) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000093 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000094 }
95 bm.eraseColor(SK_ColorTRANSPARENT);
96
97 SkCanvas canvas(bm);
98 canvas.scale(tileScale.width(), tileScale.height());
fmalitab5f78262014-08-06 13:07:15 -070099 canvas.translate(fTile.x(), fTile.y());
robertphillips9b14f262014-06-04 05:40:44 -0700100 canvas.drawPicture(fPicture);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000101
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000102 fCachedTileScale = tileScale;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000103
104 SkMatrix shaderMatrix = this->getLocalMatrix();
105 shaderMatrix.preScale(1 / tileScale.width(), 1 / tileScale.height());
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +0000106 fCachedBitmapShader.reset(CreateBitmapShader(bm, fTmx, fTmy, &shaderMatrix));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000107 }
108
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000109 // Increment the ref counter inside the mutex to ensure the returned pointer is still valid.
110 // Otherwise, the pointer may have been overwritten on a different thread before the object's
111 // ref count was incremented.
112 fCachedBitmapShader.get()->ref();
113 return fCachedBitmapShader;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000114}
115
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000116size_t SkPictureShader::contextSize() const {
117 return sizeof(PictureShaderContext);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000118}
119
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000120SkShader::Context* SkPictureShader::onCreateContext(const ContextRec& rec, void* storage) const {
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +0000121 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(*rec.fMatrix, rec.fLocalMatrix));
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000122 if (NULL == bitmapShader.get()) {
123 return NULL;
124 }
commit-bot@chromium.orgf03f9ff2014-05-06 13:43:17 +0000125 return PictureShaderContext::Create(storage, *this, rec, bitmapShader);
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000126}
127
128/////////////////////////////////////////////////////////////////////////////////////////
129
130SkShader::Context* SkPictureShader::PictureShaderContext::Create(void* storage,
131 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) {
132 PictureShaderContext* ctx = SkNEW_PLACEMENT_ARGS(storage, PictureShaderContext,
133 (shader, rec, bitmapShader));
134 if (NULL == ctx->fBitmapShaderContext) {
135 ctx->~PictureShaderContext();
136 ctx = NULL;
137 }
138 return ctx;
139}
140
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000141SkPictureShader::PictureShaderContext::PictureShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000142 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader)
143 : INHERITED(shader, rec)
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000144 , fBitmapShader(SkRef(bitmapShader))
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000145{
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000146 fBitmapShaderContextStorage = sk_malloc_throw(bitmapShader->contextSize());
147 fBitmapShaderContext = bitmapShader->createContext(rec, fBitmapShaderContextStorage);
148 //if fBitmapShaderContext is null, we are invalid
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000149}
150
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000151SkPictureShader::PictureShaderContext::~PictureShaderContext() {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000152 if (fBitmapShaderContext) {
153 fBitmapShaderContext->~Context();
154 }
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000155 sk_free(fBitmapShaderContextStorage);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000156}
157
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000158uint32_t SkPictureShader::PictureShaderContext::getFlags() const {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000159 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000160 return fBitmapShaderContext->getFlags();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000161}
162
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000163SkShader::Context::ShadeProc SkPictureShader::PictureShaderContext::asAShadeProc(void** ctx) {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000164 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000165 return fBitmapShaderContext->asAShadeProc(ctx);
166}
167
168void SkPictureShader::PictureShaderContext::shadeSpan(int x, int y, SkPMColor dstC[], int count) {
169 SkASSERT(fBitmapShaderContext);
170 fBitmapShaderContext->shadeSpan(x, y, dstC, count);
171}
172
173void SkPictureShader::PictureShaderContext::shadeSpan16(int x, int y, uint16_t dstC[], int count) {
174 SkASSERT(fBitmapShaderContext);
175 fBitmapShaderContext->shadeSpan16(x, y, dstC, count);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000176}
177
178#ifndef SK_IGNORE_TO_STRING
179void SkPictureShader::toString(SkString* str) const {
180 static const char* gTileModeName[SkShader::kTileModeCount] = {
181 "clamp", "repeat", "mirror"
182 };
183
184 str->appendf("PictureShader: [%d:%d] ",
185 fPicture ? fPicture->width() : 0,
186 fPicture ? fPicture->height() : 0);
187
188 str->appendf("(%s, %s)", gTileModeName[fTmx], gTileModeName[fTmy]);
189
190 this->INHERITED::toString(str);
191}
192#endif
193
194#if SK_SUPPORT_GPU
dandov9de5b512014-06-10 14:38:28 -0700195bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700196 const SkMatrix* localMatrix, GrColor* paintColor,
197 GrEffect** effect) const {
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000198 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(context->getMatrix(), localMatrix));
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000199 if (!bitmapShader) {
dandov9de5b512014-06-10 14:38:28 -0700200 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000201 }
bsalomon83d081a2014-07-08 09:56:10 -0700202 return bitmapShader->asNewEffect(context, paint, NULL, paintColor, effect);
dandov9de5b512014-06-10 14:38:28 -0700203}
204#else
205bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700206 const SkMatrix* localMatrix, GrColor* paintColor,
207 GrEffect** effect) const {
dandov9de5b512014-06-10 14:38:28 -0700208 SkDEBUGFAIL("Should not call in GPU-less build");
209 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000210}
211#endif