blob: 6ea67f8035692f75edc2f27763130bcf84a73ad9 [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,
commit-bot@chromium.org5aacfe92014-05-02 21:23:52 +000022 const SkMatrix* localMatrix)
23 : INHERITED(localMatrix)
24 , fPicture(SkRef(picture))
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000025 , fTmx(tmx)
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000026 , fTmy(tmy) { }
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000027
28SkPictureShader::SkPictureShader(SkReadBuffer& buffer)
29 : INHERITED(buffer) {
30 fTmx = static_cast<SkShader::TileMode>(buffer.read32());
31 fTmy = static_cast<SkShader::TileMode>(buffer.read32());
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000032 fPicture = SkPicture::CreateFromBuffer(buffer);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000033}
34
35SkPictureShader::~SkPictureShader() {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000036 fPicture->unref();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000037}
38
robertphillipse8464992014-07-14 07:53:26 -070039SkPictureShader* SkPictureShader::Create(const SkPicture* picture, TileMode tmx, TileMode tmy,
commit-bot@chromium.org5aacfe92014-05-02 21:23:52 +000040 const SkMatrix* localMatrix) {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000041 if (!picture || 0 == picture->width() || 0 == picture->height()) {
42 return NULL;
43 }
commit-bot@chromium.org5aacfe92014-05-02 21:23:52 +000044 return SkNEW_ARGS(SkPictureShader, (picture, tmx, tmy, localMatrix));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000045}
46
47void SkPictureShader::flatten(SkWriteBuffer& buffer) const {
48 this->INHERITED::flatten(buffer);
49
50 buffer.write32(fTmx);
51 buffer.write32(fTmy);
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000052 fPicture->flatten(buffer);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000053}
54
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000055SkShader* SkPictureShader::refBitmapShader(const SkMatrix& matrix, const SkMatrix* localM) const {
commit-bot@chromium.org855e88e2014-04-21 19:33:12 +000056 SkASSERT(fPicture && fPicture->width() > 0 && fPicture->height() > 0);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000057
58 SkMatrix m;
commit-bot@chromium.org5970f622014-05-12 20:42:21 +000059 m.setConcat(matrix, this->getLocalMatrix());
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +000060 if (localM) {
61 m.preConcat(*localM);
62 }
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000063
64 // Use a rotation-invariant scale
65 SkPoint scale;
66 if (!SkDecomposeUpper2x2(m, NULL, &scale, NULL)) {
67 // Decomposition failed, use an approximation.
68 scale.set(SkScalarSqrt(m.getScaleX() * m.getScaleX() + m.getSkewX() * m.getSkewX()),
69 SkScalarSqrt(m.getScaleY() * m.getScaleY() + m.getSkewY() * m.getSkewY()));
70 }
71 SkSize scaledSize = SkSize::Make(scale.x() * fPicture->width(), scale.y() * fPicture->height());
72
73 SkISize tileSize = scaledSize.toRound();
74 if (tileSize.isEmpty()) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000075 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000076 }
77
78 // The actual scale, compensating for rounding.
79 SkSize tileScale = SkSize::Make(SkIntToScalar(tileSize.width()) / fPicture->width(),
80 SkIntToScalar(tileSize.height()) / fPicture->height());
81
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000082 SkAutoMutexAcquire ama(fCachedBitmapShaderMutex);
83
scroggo1b0aa002014-07-11 12:19:00 -070084 if (!fCachedBitmapShader || tileScale != fCachedTileScale) {
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000085 SkBitmap bm;
86 if (!bm.allocN32Pixels(tileSize.width(), tileSize.height())) {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000087 return NULL;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000088 }
89 bm.eraseColor(SK_ColorTRANSPARENT);
90
91 SkCanvas canvas(bm);
92 canvas.scale(tileScale.width(), tileScale.height());
robertphillips9b14f262014-06-04 05:40:44 -070093 canvas.drawPicture(fPicture);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000094
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +000095 fCachedTileScale = tileScale;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +000096
97 SkMatrix shaderMatrix = this->getLocalMatrix();
98 shaderMatrix.preScale(1 / tileScale.width(), 1 / tileScale.height());
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +000099 fCachedBitmapShader.reset(CreateBitmapShader(bm, fTmx, fTmy, &shaderMatrix));
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000100 }
101
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000102 // Increment the ref counter inside the mutex to ensure the returned pointer is still valid.
103 // Otherwise, the pointer may have been overwritten on a different thread before the object's
104 // ref count was incremented.
105 fCachedBitmapShader.get()->ref();
106 return fCachedBitmapShader;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000107}
108
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000109size_t SkPictureShader::contextSize() const {
110 return sizeof(PictureShaderContext);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000111}
112
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000113SkShader::Context* SkPictureShader::onCreateContext(const ContextRec& rec, void* storage) const {
commit-bot@chromium.org80116dc2014-05-06 17:16:03 +0000114 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(*rec.fMatrix, rec.fLocalMatrix));
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000115 if (NULL == bitmapShader.get()) {
116 return NULL;
117 }
commit-bot@chromium.orgf03f9ff2014-05-06 13:43:17 +0000118 return PictureShaderContext::Create(storage, *this, rec, bitmapShader);
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000119}
120
121/////////////////////////////////////////////////////////////////////////////////////////
122
123SkShader::Context* SkPictureShader::PictureShaderContext::Create(void* storage,
124 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader) {
125 PictureShaderContext* ctx = SkNEW_PLACEMENT_ARGS(storage, PictureShaderContext,
126 (shader, rec, bitmapShader));
127 if (NULL == ctx->fBitmapShaderContext) {
128 ctx->~PictureShaderContext();
129 ctx = NULL;
130 }
131 return ctx;
132}
133
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000134SkPictureShader::PictureShaderContext::PictureShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000135 const SkPictureShader& shader, const ContextRec& rec, SkShader* bitmapShader)
136 : INHERITED(shader, rec)
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000137 , fBitmapShader(SkRef(bitmapShader))
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000138{
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000139 fBitmapShaderContextStorage = sk_malloc_throw(bitmapShader->contextSize());
140 fBitmapShaderContext = bitmapShader->createContext(rec, fBitmapShaderContextStorage);
141 //if fBitmapShaderContext is null, we are invalid
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000142}
143
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000144SkPictureShader::PictureShaderContext::~PictureShaderContext() {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000145 if (fBitmapShaderContext) {
146 fBitmapShaderContext->~Context();
147 }
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000148 sk_free(fBitmapShaderContextStorage);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000149}
150
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000151uint32_t SkPictureShader::PictureShaderContext::getFlags() const {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000152 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000153 return fBitmapShaderContext->getFlags();
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000154}
155
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000156SkShader::Context::ShadeProc SkPictureShader::PictureShaderContext::asAShadeProc(void** ctx) {
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000157 SkASSERT(fBitmapShaderContext);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000158 return fBitmapShaderContext->asAShadeProc(ctx);
159}
160
161void SkPictureShader::PictureShaderContext::shadeSpan(int x, int y, SkPMColor dstC[], int count) {
162 SkASSERT(fBitmapShaderContext);
163 fBitmapShaderContext->shadeSpan(x, y, dstC, count);
164}
165
166void SkPictureShader::PictureShaderContext::shadeSpan16(int x, int y, uint16_t dstC[], int count) {
167 SkASSERT(fBitmapShaderContext);
168 fBitmapShaderContext->shadeSpan16(x, y, dstC, count);
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000169}
170
171#ifndef SK_IGNORE_TO_STRING
172void SkPictureShader::toString(SkString* str) const {
173 static const char* gTileModeName[SkShader::kTileModeCount] = {
174 "clamp", "repeat", "mirror"
175 };
176
177 str->appendf("PictureShader: [%d:%d] ",
178 fPicture ? fPicture->width() : 0,
179 fPicture ? fPicture->height() : 0);
180
181 str->appendf("(%s, %s)", gTileModeName[fTmx], gTileModeName[fTmy]);
182
183 this->INHERITED::toString(str);
184}
185#endif
186
187#if SK_SUPPORT_GPU
dandov9de5b512014-06-10 14:38:28 -0700188bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700189 const SkMatrix* localMatrix, GrColor* paintColor,
190 GrEffect** effect) const {
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000191 SkAutoTUnref<SkShader> bitmapShader(this->refBitmapShader(context->getMatrix(), localMatrix));
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000192 if (!bitmapShader) {
dandov9de5b512014-06-10 14:38:28 -0700193 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000194 }
bsalomon83d081a2014-07-08 09:56:10 -0700195 return bitmapShader->asNewEffect(context, paint, NULL, paintColor, effect);
dandov9de5b512014-06-10 14:38:28 -0700196}
197#else
198bool SkPictureShader::asNewEffect(GrContext* context, const SkPaint& paint,
bsalomon83d081a2014-07-08 09:56:10 -0700199 const SkMatrix* localMatrix, GrColor* paintColor,
200 GrEffect** effect) const {
dandov9de5b512014-06-10 14:38:28 -0700201 SkDEBUGFAIL("Should not call in GPU-less build");
202 return false;
commit-bot@chromium.orgc5d9bb02014-04-08 15:19:34 +0000203}
204#endif