blob: 44ec62dcd96de3eea3679216218056d9dce4c848 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2006 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
reed@android.com8a1c16f2008-12-17 15:59:43 +00009
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +000010#include "SkScalar.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000011#include "SkShader.h"
12#include "SkPaint.h"
reed@android.comf2b98d62010-12-20 18:26:13 +000013#include "SkMallocPixelRef.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000014
15SkShader::SkShader() : fLocalMatrix(NULL) {
16 SkDEBUGCODE(fInSession = false;)
17}
18
19SkShader::SkShader(SkFlattenableReadBuffer& buffer)
20 : INHERITED(buffer), fLocalMatrix(NULL) {
21 if (buffer.readBool()) {
22 SkMatrix matrix;
reed@google.comf2eb5ab2011-05-10 22:56:42 +000023 SkReadMatrix(&buffer, &matrix);
reed@android.com8a1c16f2008-12-17 15:59:43 +000024 setLocalMatrix(matrix);
25 }
26 SkDEBUGCODE(fInSession = false;)
27}
28
29SkShader::~SkShader() {
30 SkASSERT(!fInSession);
31 sk_free(fLocalMatrix);
32}
33
34void SkShader::beginSession() {
35 SkASSERT(!fInSession);
36 SkDEBUGCODE(fInSession = true;)
37}
38
39void SkShader::endSession() {
40 SkASSERT(fInSession);
41 SkDEBUGCODE(fInSession = false;)
42}
43
44void SkShader::flatten(SkFlattenableWriteBuffer& buffer) {
45 this->INHERITED::flatten(buffer);
46 buffer.writeBool(fLocalMatrix != NULL);
47 if (fLocalMatrix) {
reed@google.comf2eb5ab2011-05-10 22:56:42 +000048 SkWriteMatrix(&buffer, *fLocalMatrix);
reed@android.com8a1c16f2008-12-17 15:59:43 +000049 }
50}
51
52bool SkShader::getLocalMatrix(SkMatrix* localM) const {
53 if (fLocalMatrix) {
54 if (localM) {
55 *localM = *fLocalMatrix;
56 }
57 return true;
58 } else {
59 if (localM) {
60 localM->reset();
61 }
62 return false;
63 }
64}
65
66void SkShader::setLocalMatrix(const SkMatrix& localM) {
67 if (localM.isIdentity()) {
68 this->resetLocalMatrix();
69 } else {
70 if (fLocalMatrix == NULL) {
71 fLocalMatrix = (SkMatrix*)sk_malloc_throw(sizeof(SkMatrix));
72 }
73 *fLocalMatrix = localM;
74 }
75}
76
77void SkShader::resetLocalMatrix() {
78 if (fLocalMatrix) {
79 sk_free(fLocalMatrix);
80 fLocalMatrix = NULL;
81 }
82}
83
84bool SkShader::setContext(const SkBitmap& device,
85 const SkPaint& paint,
86 const SkMatrix& matrix) {
87 const SkMatrix* m = &matrix;
88 SkMatrix total;
89
90 fDeviceConfig = SkToU8(device.getConfig());
91 fPaintAlpha = paint.getAlpha();
92 if (fLocalMatrix) {
93 total.setConcat(matrix, *fLocalMatrix);
94 m = &total;
95 }
96 if (m->invert(&fTotalInverse)) {
97 fTotalInverseClass = (uint8_t)ComputeMatrixClass(fTotalInverse);
98 return true;
99 }
100 return false;
101}
102
103#include "SkColorPriv.h"
104
105void SkShader::shadeSpan16(int x, int y, uint16_t span16[], int count) {
106 SkASSERT(span16);
107 SkASSERT(count > 0);
108 SkASSERT(this->canCallShadeSpan16());
109
110 // basically, if we get here, the subclass screwed up
111 SkASSERT(!"kHasSpan16 flag is set, but shadeSpan16() not implemented");
112}
113
114#define kTempColorQuadCount 6 // balance between speed (larger) and saving stack-space
reed@google.com7c2f27d2011-03-07 19:29:00 +0000115#define kTempColorCount (kTempColorQuadCount << 2)
reed@android.com8a1c16f2008-12-17 15:59:43 +0000116
117#ifdef SK_CPU_BENDIAN
118 #define SkU32BitShiftToByteOffset(shift) (3 - ((shift) >> 3))
119#else
120 #define SkU32BitShiftToByteOffset(shift) ((shift) >> 3)
121#endif
122
123void SkShader::shadeSpanAlpha(int x, int y, uint8_t alpha[], int count) {
124 SkASSERT(count > 0);
125
126 SkPMColor colors[kTempColorCount];
127
128 while ((count -= kTempColorCount) >= 0) {
129 this->shadeSpan(x, y, colors, kTempColorCount);
130 x += kTempColorCount;
131
132 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
133 int quads = kTempColorQuadCount;
134 do {
135 U8CPU a0 = srcA[0];
136 U8CPU a1 = srcA[4];
137 U8CPU a2 = srcA[8];
138 U8CPU a3 = srcA[12];
139 srcA += 4*4;
140 *alpha++ = SkToU8(a0);
141 *alpha++ = SkToU8(a1);
142 *alpha++ = SkToU8(a2);
143 *alpha++ = SkToU8(a3);
144 } while (--quads != 0);
145 }
146 SkASSERT(count < 0);
147 SkASSERT(count + kTempColorCount >= 0);
148 if (count += kTempColorCount) {
149 this->shadeSpan(x, y, colors, count);
150
151 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
152 do {
153 *alpha++ = *srcA;
154 srcA += 4;
155 } while (--count != 0);
156 }
157#if 0
158 do {
159 int n = count;
160 if (n > kTempColorCount)
161 n = kTempColorCount;
162 SkASSERT(n > 0);
163
164 this->shadeSpan(x, y, colors, n);
165 x += n;
166 count -= n;
167
168 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
169 do {
170 *alpha++ = *srcA;
171 srcA += 4;
172 } while (--n != 0);
173 } while (count > 0);
174#endif
175}
176
177SkShader::MatrixClass SkShader::ComputeMatrixClass(const SkMatrix& mat) {
178 MatrixClass mc = kLinear_MatrixClass;
179
tomhudson@google.com8d430182011-06-06 19:11:19 +0000180 if (mat.hasPerspective()) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000181 if (mat.fixedStepInX(0, NULL, NULL)) {
182 mc = kFixedStepInX_MatrixClass;
183 } else {
184 mc = kPerspective_MatrixClass;
185 }
186 }
187 return mc;
188}
189
190//////////////////////////////////////////////////////////////////////////////
191
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000192SkShader::BitmapType SkShader::asABitmap(SkBitmap*, SkMatrix*,
reed@google.com7c2f27d2011-03-07 19:29:00 +0000193 TileMode*, SkScalar*) const {
reed@android.comf2b98d62010-12-20 18:26:13 +0000194 return kNone_BitmapType;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000195}
196
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000197SkShader::GradientType SkShader::asAGradient(GradientInfo* info) const {
198 return kNone_GradientType;
199}
200
reed@android.com8a1c16f2008-12-17 15:59:43 +0000201SkShader* SkShader::CreateBitmapShader(const SkBitmap& src,
202 TileMode tmx, TileMode tmy) {
203 return SkShader::CreateBitmapShader(src, tmx, tmy, NULL, 0);
204}
205
206//////////////////////////////////////////////////////////////////////////////
207
208#include "SkColorShader.h"
209#include "SkUtils.h"
210
reed@android.comf2b98d62010-12-20 18:26:13 +0000211SkColorShader::SkColorShader() {
212 fFlags = 0;
213 fInheritColor = true;
reed@android.comf2b98d62010-12-20 18:26:13 +0000214}
215
216SkColorShader::SkColorShader(SkColor c) {
217 fFlags = 0;
218 fColor = c;
219 fInheritColor = false;
reed@android.comf2b98d62010-12-20 18:26:13 +0000220}
221
reed@google.com2be9e8b2011-07-06 21:18:09 +0000222SkColorShader::~SkColorShader() {}
reed@android.comf2b98d62010-12-20 18:26:13 +0000223
junov@chromium.orgb6e16192011-12-09 15:48:03 +0000224bool SkColorShader::isOpaque() const {
225 if (fInheritColor) {
226 return true; // using paint's alpha
227 }
228 return SkColorGetA(fColor) == 255;
229}
230
reed@android.com8a1c16f2008-12-17 15:59:43 +0000231SkColorShader::SkColorShader(SkFlattenableReadBuffer& b) : INHERITED(b) {
reed@android.com5119bdb2009-06-12 21:27:03 +0000232 fFlags = 0; // computed in setContext
reed@android.comf2b98d62010-12-20 18:26:13 +0000233
234 fInheritColor = b.readU8();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000235 if (fInheritColor) {
236 return;
237 }
238 fColor = b.readU32();
239}
240
241void SkColorShader::flatten(SkFlattenableWriteBuffer& buffer) {
242 this->INHERITED::flatten(buffer);
243 buffer.write8(fInheritColor);
244 if (fInheritColor) {
245 return;
246 }
247 buffer.write32(fColor);
248}
249
reed@google.com59ccef62011-12-07 14:59:50 +0000250SkFlattenable* SkColorShader::CreateProc(SkFlattenableReadBuffer& buffer) {
251 return SkNEW_ARGS(SkColorShader, (buffer));
252}
253
254SkFlattenable::Factory SkColorShader::getFactory() {
255 return CreateProc;
256}
257
258uint32_t SkColorShader::getFlags() {
259 return fFlags;
260}
261
reed@android.com8a1c16f2008-12-17 15:59:43 +0000262uint8_t SkColorShader::getSpan16Alpha() const {
263 return SkGetPackedA32(fPMColor);
264}
265
266bool SkColorShader::setContext(const SkBitmap& device, const SkPaint& paint,
267 const SkMatrix& matrix) {
268 if (!this->INHERITED::setContext(device, paint, matrix)) {
269 return false;
270 }
271
reed@android.com8a1c16f2008-12-17 15:59:43 +0000272 unsigned a;
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000273
reed@android.com8a1c16f2008-12-17 15:59:43 +0000274 if (fInheritColor) {
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000275 fColor = paint.getColor();
276 a = SkColorGetA(fColor);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000277 } else {
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000278 a = SkAlphaMul(SkColorGetA(fColor), SkAlpha255To256(paint.getAlpha()));
reed@android.com8a1c16f2008-12-17 15:59:43 +0000279 }
280
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000281 unsigned r = SkColorGetR(fColor);
282 unsigned g = SkColorGetG(fColor);
283 unsigned b = SkColorGetB(fColor);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000284
285 // we want this before we apply any alpha
286 fColor16 = SkPack888ToRGB16(r, g, b);
287
288 if (a != 255) {
reed@android.com8f073382010-03-11 21:56:16 +0000289 r = SkMulDiv255Round(r, a);
290 g = SkMulDiv255Round(g, a);
291 b = SkMulDiv255Round(b, a);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000292 }
293 fPMColor = SkPackARGB32(a, r, g, b);
294
reed@android.com8f073382010-03-11 21:56:16 +0000295 fFlags = kConstInY32_Flag;
reed@android.com5b815352010-03-11 22:20:43 +0000296 if (255 == a) {
reed@android.com5119bdb2009-06-12 21:27:03 +0000297 fFlags |= kOpaqueAlpha_Flag;
reed@android.com5b815352010-03-11 22:20:43 +0000298 if (paint.isDither() == false) {
299 fFlags |= kHasSpan16_Flag;
300 }
reed@android.com5119bdb2009-06-12 21:27:03 +0000301 }
302
reed@android.com8a1c16f2008-12-17 15:59:43 +0000303 return true;
304}
305
306void SkColorShader::shadeSpan(int x, int y, SkPMColor span[], int count) {
307 sk_memset32(span, fPMColor, count);
308}
309
310void SkColorShader::shadeSpan16(int x, int y, uint16_t span[], int count) {
311 sk_memset16(span, fColor16, count);
312}
313
314void SkColorShader::shadeSpanAlpha(int x, int y, uint8_t alpha[], int count) {
315 memset(alpha, SkGetPackedA32(fPMColor), count);
316}
317
reed@android.comf2b98d62010-12-20 18:26:13 +0000318// if we had a asAColor method, that would be more efficient...
319SkShader::BitmapType SkColorShader::asABitmap(SkBitmap* bitmap, SkMatrix* matrix,
reed@google.com7c2f27d2011-03-07 19:29:00 +0000320 TileMode modes[],
reed@google.com8cad5862011-03-08 14:51:44 +0000321 SkScalar* twoPointRadialParams) const {
reed@google.com2be9e8b2011-07-06 21:18:09 +0000322 return kNone_BitmapType;
reed@android.comf2b98d62010-12-20 18:26:13 +0000323}
324
vandebo@chromium.orgd3ae7792011-02-24 00:21:06 +0000325SkShader::GradientType SkColorShader::asAGradient(GradientInfo* info) const {
326 if (info) {
327 if (info->fColors && info->fColorCount >= 1) {
328 info->fColors[0] = fColor;
329 }
330 info->fColorCount = 1;
331 info->fTileMode = SkShader::kRepeat_TileMode;
332 }
333 return kColor_GradientType;
334}
reed@google.com37a20122011-07-05 18:54:12 +0000335
336///////////////////////////////////////////////////////////////////////////////
337
338#include "SkEmptyShader.h"
339
reed@google.com37a20122011-07-05 18:54:12 +0000340SkEmptyShader::SkEmptyShader(SkFlattenableReadBuffer& b) : INHERITED(b) {}
341
342uint32_t SkEmptyShader::getFlags() { return 0; }
343uint8_t SkEmptyShader::getSpan16Alpha() const { return 0; }
reed@google.com59ccef62011-12-07 14:59:50 +0000344
345bool SkEmptyShader::setContext(const SkBitmap&, const SkPaint&,
346 const SkMatrix&) { return false; }
347
348void SkEmptyShader::shadeSpan(int x, int y, SkPMColor span[], int count) {
349 SkASSERT(!"should never get called, since setContext() returned false");
reed@google.com37a20122011-07-05 18:54:12 +0000350}
reed@google.com59ccef62011-12-07 14:59:50 +0000351
352void SkEmptyShader::shadeSpan16(int x, int y, uint16_t span[], int count) {
353 SkASSERT(!"should never get called, since setContext() returned false");
354}
355
356void SkEmptyShader::shadeSpanAlpha(int x, int y, uint8_t alpha[], int count) {
357 SkASSERT(!"should never get called, since setContext() returned false");
358}
reed@google.com37a20122011-07-05 18:54:12 +0000359
360SkFlattenable::Factory SkEmptyShader::getFactory() { return NULL; }
reed@google.com59ccef62011-12-07 14:59:50 +0000361
reed@google.com37a20122011-07-05 18:54:12 +0000362void SkEmptyShader::flatten(SkFlattenableWriteBuffer& buffer) {
363 this->INHERITED::flatten(buffer);
364}
365