blob: 5a9cf26f7818cf30a919d824aa8329482ffc6a25 [file] [log] [blame]
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +00001
2/*
3 * Copyright 2011 Google Inc.
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
9#include "Test.h"
10#include "SkCanvas.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000011#include "SkColorPriv.h"
12#include "SkDevice.h"
reed@google.com4b163ed2012-08-07 21:35:13 +000013#include "SkMathPriv.h"
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000014#include "SkRegion.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000015#if SK_SUPPORT_GPU
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000016#include "SkGpuDevice.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000017#else
18class GrContext;
19#endif
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000020
21static const int DEV_W = 100, DEV_H = 100;
22static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
rmistry@google.comd6176b02012-08-23 18:14:13 +000023static const SkRect DEV_RECT_S = SkRect::MakeWH(DEV_W * SK_Scalar1,
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000024 DEV_H * SK_Scalar1);
25static const U8CPU DEV_PAD = 0xee;
26
27namespace {
28SkPMColor getCanvasColor(int x, int y) {
29 SkASSERT(x >= 0 && x < DEV_W);
30 SkASSERT(y >= 0 && y < DEV_H);
31
32 U8CPU r = x;
33 U8CPU g = y;
34 U8CPU b = 0xc;
35
bsalomon@google.com31648eb2011-11-23 15:01:08 +000036 U8CPU a = 0x0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000037 switch ((x+y) % 5) {
38 case 0:
39 a = 0xff;
40 break;
41 case 1:
42 a = 0x80;
43 break;
44 case 2:
45 a = 0xCC;
46 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000047 case 3:
48 a = 0x00;
49 break;
bsalomon@google.com31648eb2011-11-23 15:01:08 +000050 case 4:
51 a = 0x01;
52 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +000053 }
54 return SkPremultiplyARGBInline(a, r, g, b);
55}
56
57bool config8888IsPremul(SkCanvas::Config8888 config8888) {
58 switch (config8888) {
59 case SkCanvas::kNative_Premul_Config8888:
60 case SkCanvas::kBGRA_Premul_Config8888:
61 case SkCanvas::kRGBA_Premul_Config8888:
62 return true;
63 case SkCanvas::kNative_Unpremul_Config8888:
64 case SkCanvas::kBGRA_Unpremul_Config8888:
65 case SkCanvas::kRGBA_Unpremul_Config8888:
66 return false;
67 default:
68 SkASSERT(0);
69 return false;
70 }
71}
72
73// assumes any premu/.unpremul has been applied
74uint32_t packConfig8888(SkCanvas::Config8888 config8888,
75 U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
76 uint32_t r32;
77 uint8_t* result = reinterpret_cast<uint8_t*>(&r32);
78 switch (config8888) {
79 case SkCanvas::kNative_Premul_Config8888:
80 case SkCanvas::kNative_Unpremul_Config8888:
81 r32 = SkPackARGB32NoCheck(a, r, g, b);
82 break;
83 case SkCanvas::kBGRA_Premul_Config8888:
84 case SkCanvas::kBGRA_Unpremul_Config8888:
85 result[0] = b;
86 result[1] = g;
87 result[2] = r;
88 result[3] = a;
89 break;
90 case SkCanvas::kRGBA_Premul_Config8888:
91 case SkCanvas::kRGBA_Unpremul_Config8888:
92 result[0] = r;
93 result[1] = g;
94 result[2] = b;
95 result[3] = a;
96 break;
97 default:
98 SkASSERT(0);
99 return 0;
100 }
101 return r32;
102}
103
104uint32_t getBitmapColor(int x, int y, int w, int h, SkCanvas::Config8888 config8888) {
105 int n = y * w + x;
106 U8CPU b = n & 0xff;
107 U8CPU g = (n >> 8) & 0xff;
108 U8CPU r = (n >> 16) & 0xff;
bsalomon@google.com31648eb2011-11-23 15:01:08 +0000109 U8CPU a = 0;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000110 switch ((x+y) % 5) {
111 case 4:
112 a = 0xff;
113 break;
114 case 3:
115 a = 0x80;
116 break;
117 case 2:
118 a = 0xCC;
119 break;
120 case 1:
121 a = 0x01;
122 break;
123 case 0:
124 a = 0x00;
125 break;
126 }
127 if (config8888IsPremul(config8888)) {
128 r = SkMulDiv255Ceiling(r, a);
129 g = SkMulDiv255Ceiling(g, a);
130 b = SkMulDiv255Ceiling(b, a);
131 }
132 return packConfig8888(config8888, a, r, g , b);
133}
134
135void fillCanvas(SkCanvas* canvas) {
136 static SkBitmap bmp;
137 if (bmp.isNull()) {
138 bmp.setConfig(SkBitmap::kARGB_8888_Config, DEV_W, DEV_H);
139 bool alloc = bmp.allocPixels();
140 SkASSERT(alloc);
141 SkAutoLockPixels alp(bmp);
142 intptr_t pixels = reinterpret_cast<intptr_t>(bmp.getPixels());
143 for (int y = 0; y < DEV_H; ++y) {
144 for (int x = 0; x < DEV_W; ++x) {
145 SkPMColor* pixel = reinterpret_cast<SkPMColor*>(pixels + y * bmp.rowBytes() + x * bmp.bytesPerPixel());
146 *pixel = getCanvasColor(x, y);
147 }
148 }
149 }
150 canvas->save();
151 canvas->setMatrix(SkMatrix::I());
152 canvas->clipRect(DEV_RECT_S, SkRegion::kReplace_Op);
153 SkPaint paint;
154 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
155 canvas->drawBitmap(bmp, 0, 0, &paint);
156 canvas->restore();
157}
158
159SkPMColor convertConfig8888ToPMColor(SkCanvas::Config8888 config8888,
160 uint32_t color,
161 bool* premul) {
162 const uint8_t* c = reinterpret_cast<uint8_t*>(&color);
163 U8CPU a,r,g,b;
164 *premul = false;
165 switch (config8888) {
166 case SkCanvas::kNative_Premul_Config8888:
167 return color;
168 case SkCanvas::kNative_Unpremul_Config8888:
169 *premul = true;
170 a = SkGetPackedA32(color);
171 r = SkGetPackedR32(color);
172 g = SkGetPackedG32(color);
173 b = SkGetPackedB32(color);
174 break;
175 case SkCanvas::kBGRA_Unpremul_Config8888:
176 *premul = true; // fallthru
177 case SkCanvas::kBGRA_Premul_Config8888:
178 a = static_cast<U8CPU>(c[3]);
179 r = static_cast<U8CPU>(c[2]);
180 g = static_cast<U8CPU>(c[1]);
181 b = static_cast<U8CPU>(c[0]);
182 break;
183 case SkCanvas::kRGBA_Unpremul_Config8888:
184 *premul = true; // fallthru
185 case SkCanvas::kRGBA_Premul_Config8888:
186 a = static_cast<U8CPU>(c[3]);
187 r = static_cast<U8CPU>(c[0]);
188 g = static_cast<U8CPU>(c[1]);
189 b = static_cast<U8CPU>(c[2]);
190 break;
191 default:
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000192 SkDEBUGFAIL("Unexpected Config8888");
193 break;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000194 }
195 if (*premul) {
196 r = SkMulDiv255Ceiling(r, a);
197 g = SkMulDiv255Ceiling(g, a);
198 b = SkMulDiv255Ceiling(b, a);
199 }
200 return SkPackARGB32(a, r, g, b);
201}
202
203bool checkPixel(SkPMColor a, SkPMColor b, bool didPremulConversion) {
204 if (!didPremulConversion) {
205 return a == b;
206 }
207 int32_t aA = static_cast<int32_t>(SkGetPackedA32(a));
208 int32_t aR = static_cast<int32_t>(SkGetPackedR32(a));
209 int32_t aG = static_cast<int32_t>(SkGetPackedG32(a));
210 int32_t aB = SkGetPackedB32(a);
211
212 int32_t bA = static_cast<int32_t>(SkGetPackedA32(b));
213 int32_t bR = static_cast<int32_t>(SkGetPackedR32(b));
214 int32_t bG = static_cast<int32_t>(SkGetPackedG32(b));
215 int32_t bB = static_cast<int32_t>(SkGetPackedB32(b));
216
217 return aA == bA &&
218 SkAbs32(aR - bR) <= 1 &&
219 SkAbs32(aG - bG) <= 1 &&
220 SkAbs32(aB - bB) <= 1;
221}
222
223bool checkWrite(skiatest::Reporter* reporter,
224 SkCanvas* canvas,
225 const SkBitmap& bitmap,
226 int writeX, int writeY,
227 SkCanvas::Config8888 config8888) {
228 SkDevice* dev = canvas->getDevice();
229 if (!dev) {
230 return false;
231 }
232 SkBitmap devBmp = dev->accessBitmap(false);
233 if (devBmp.width() != DEV_W ||
234 devBmp.height() != DEV_H ||
235 devBmp.config() != SkBitmap::kARGB_8888_Config ||
236 devBmp.isNull()) {
237 return false;
238 }
239 SkAutoLockPixels alp(devBmp);
240
241 intptr_t canvasPixels = reinterpret_cast<intptr_t>(devBmp.getPixels());
242 size_t canvasRowBytes = devBmp.rowBytes();
243 SkIRect writeRect = SkIRect::MakeXYWH(writeX, writeY, bitmap.width(), bitmap.height());
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000244 for (int cy = 0; cy < DEV_H; ++cy) {
245 const SkPMColor* canvasRow = reinterpret_cast<const SkPMColor*>(canvasPixels);
246 for (int cx = 0; cx < DEV_W; ++cx) {
247 SkPMColor canvasPixel = canvasRow[cx];
248 if (writeRect.contains(cx, cy)) {
249 int bx = cx - writeX;
250 int by = cy - writeY;
251 uint32_t bmpColor8888 = getBitmapColor(bx, by, bitmap.width(), bitmap.height(), config8888);
252 bool mul;
253 SkPMColor bmpPMColor = convertConfig8888ToPMColor(config8888, bmpColor8888, &mul);
254 bool check;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000255 REPORTER_ASSERT(reporter, check = checkPixel(bmpPMColor, canvasPixel, mul));
256 if (!check) {
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000257 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000258 }
259 } else {
260 bool check;
261 SkPMColor testColor = getCanvasColor(cx, cy);
262 REPORTER_ASSERT(reporter, check = (canvasPixel == testColor));
263 if (!check) {
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000264 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000265 }
266 }
267 }
268 if (cy != DEV_H -1) {
269 const char* pad = reinterpret_cast<const char*>(canvasPixels + 4 * DEV_W);
270 for (size_t px = 0; px < canvasRowBytes - 4 * DEV_W; ++px) {
271 bool check;
272 REPORTER_ASSERT(reporter, check = (pad[px] == static_cast<char>(DEV_PAD)));
273 if (!check) {
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000274 return false;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000275 }
276 }
277 }
278 canvasPixels += canvasRowBytes;
279 }
280
bsalomon@google.com72f3dca2012-08-17 13:32:06 +0000281 return true;
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000282}
283
284enum DevType {
285 kRaster_DevType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000286#if SK_SUPPORT_GPU
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000287 kGpu_DevType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000288#endif
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000289};
290
291struct CanvasConfig {
292 DevType fDevType;
293 bool fTightRowBytes;
294};
295
296static const CanvasConfig gCanvasConfigs[] = {
297 {kRaster_DevType, true},
298 {kRaster_DevType, false},
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000299#if SK_SUPPORT_GPU && defined(SK_SCALAR_IS_FLOAT)
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000300 {kGpu_DevType, true}, // row bytes has no meaning on gpu devices
bsalomon@google.combbce8b22011-11-10 21:20:37 +0000301#endif
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000302};
303
304bool setupCanvas(SkCanvas* canvas, const CanvasConfig& c, GrContext* grCtx) {
305 switch (c.fDevType) {
306 case kRaster_DevType: {
307 SkBitmap bmp;
308 size_t rowBytes = c.fTightRowBytes ? 0 : 4 * DEV_W + 100;
309 bmp.setConfig(SkBitmap::kARGB_8888_Config, DEV_W, DEV_H, rowBytes);
310 if (!bmp.allocPixels()) {
311 return false;
312 }
313 // if rowBytes isn't tight then set the padding to a known value
314 if (rowBytes) {
315 SkAutoLockPixels alp(bmp);
316 memset(bmp.getPixels(), DEV_PAD, bmp.getSafeSize());
317 }
318 canvas->setDevice(new SkDevice(bmp))->unref();
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000319 break;
320 }
321#if SK_SUPPORT_GPU
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000322 case kGpu_DevType:
323 canvas->setDevice(new SkGpuDevice(grCtx,
324 SkBitmap::kARGB_8888_Config,
325 DEV_W, DEV_H))->unref();
326 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000327#endif
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000328 }
329 return true;
330}
331
332bool setupBitmap(SkBitmap* bitmap,
333 SkCanvas::Config8888 config8888,
334 int w, int h,
335 bool tightRowBytes) {
336 size_t rowBytes = tightRowBytes ? 0 : 4 * w + 60;
337 bitmap->setConfig(SkBitmap::kARGB_8888_Config, w, h, rowBytes);
338 if (!bitmap->allocPixels()) {
339 return false;
340 }
341 SkAutoLockPixels alp(*bitmap);
342 intptr_t pixels = reinterpret_cast<intptr_t>(bitmap->getPixels());
343 for (int y = 0; y < h; ++y) {
344 for (int x = 0; x < w; ++x) {
345 uint32_t* pixel = reinterpret_cast<uint32_t*>(pixels + y * bitmap->rowBytes() + x * 4);
346 *pixel = getBitmapColor(x, y, w, h, config8888);
347 }
348 }
349 return true;
350}
351
352void WritePixelsTest(skiatest::Reporter* reporter, GrContext* context) {
353 SkCanvas canvas;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000354
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000355 const SkIRect testRects[] = {
356 // entire thing
357 DEV_RECT,
358 // larger on all sides
359 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H + 10),
360 // fully contained
361 SkIRect::MakeLTRB(DEV_W / 4, DEV_H / 4, 3 * DEV_W / 4, 3 * DEV_H / 4),
362 // outside top left
363 SkIRect::MakeLTRB(-10, -10, -1, -1),
364 // touching top left corner
365 SkIRect::MakeLTRB(-10, -10, 0, 0),
366 // overlapping top left corner
367 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H / 4),
368 // overlapping top left and top right corners
369 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, DEV_H / 4),
370 // touching entire top edge
371 SkIRect::MakeLTRB(-10, -10, DEV_W + 10, 0),
372 // overlapping top right corner
373 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H / 4),
374 // contained in x, overlapping top edge
375 SkIRect::MakeLTRB(DEV_W / 4, -10, 3 * DEV_W / 4, DEV_H / 4),
376 // outside top right corner
377 SkIRect::MakeLTRB(DEV_W + 1, -10, DEV_W + 10, -1),
378 // touching top right corner
379 SkIRect::MakeLTRB(DEV_W, -10, DEV_W + 10, 0),
380 // overlapping top left and bottom left corners
381 SkIRect::MakeLTRB(-10, -10, DEV_W / 4, DEV_H + 10),
382 // touching entire left edge
383 SkIRect::MakeLTRB(-10, -10, 0, DEV_H + 10),
384 // overlapping bottom left corner
385 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W / 4, DEV_H + 10),
386 // contained in y, overlapping left edge
387 SkIRect::MakeLTRB(-10, DEV_H / 4, DEV_W / 4, 3 * DEV_H / 4),
388 // outside bottom left corner
389 SkIRect::MakeLTRB(-10, DEV_H + 1, -1, DEV_H + 10),
390 // touching bottom left corner
391 SkIRect::MakeLTRB(-10, DEV_H, 0, DEV_H + 10),
392 // overlapping bottom left and bottom right corners
393 SkIRect::MakeLTRB(-10, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
394 // touching entire left edge
395 SkIRect::MakeLTRB(0, DEV_H, DEV_W, DEV_H + 10),
396 // overlapping bottom right corner
397 SkIRect::MakeLTRB(3 * DEV_W / 4, 3 * DEV_H / 4, DEV_W + 10, DEV_H + 10),
398 // overlapping top right and bottom right corners
399 SkIRect::MakeLTRB(3 * DEV_W / 4, -10, DEV_W + 10, DEV_H + 10),
400 };
401
402 for (size_t i = 0; i < SK_ARRAY_COUNT(gCanvasConfigs); ++i) {
403 REPORTER_ASSERT(reporter, setupCanvas(&canvas, gCanvasConfigs[i], context));
404
405 static const SkCanvas::Config8888 gReadConfigs[] = {
406 SkCanvas::kNative_Premul_Config8888,
407 SkCanvas::kNative_Unpremul_Config8888,
408 SkCanvas::kBGRA_Premul_Config8888,
409 SkCanvas::kBGRA_Unpremul_Config8888,
410 SkCanvas::kRGBA_Premul_Config8888,
411 SkCanvas::kRGBA_Unpremul_Config8888,
412 };
reed@google.comb03db4a2011-11-16 21:36:27 +0000413 for (size_t r = 0; r < SK_ARRAY_COUNT(testRects); ++r) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000414 const SkIRect& rect = testRects[r];
415 for (int tightBmp = 0; tightBmp < 2; ++tightBmp) {
reed@google.comb03db4a2011-11-16 21:36:27 +0000416 for (size_t c = 0; c < SK_ARRAY_COUNT(gReadConfigs); ++c) {
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000417 fillCanvas(&canvas);
418 SkCanvas::Config8888 config8888 = gReadConfigs[c];
419 SkBitmap bmp;
420 REPORTER_ASSERT(reporter, setupBitmap(&bmp, config8888, rect.width(), rect.height(), SkToBool(tightBmp)));
421 canvas.writePixels(bmp, rect.fLeft, rect.fTop, config8888);
422 REPORTER_ASSERT(reporter, checkWrite(reporter, &canvas, bmp, rect.fLeft, rect.fTop, config8888));
423 }
424 }
425 }
426 }
427}
428}
429
borenet@google.com0cb1e2b2012-07-12 19:48:42 +0000430#ifndef SK_BUILD_FOR_ANDROID
bsalomon@google.comd58a1cd2011-11-10 20:57:43 +0000431#include "TestClassDef.h"
432DEFINE_GPUTESTCLASS("WritePixels", WritePixelsTestClass, WritePixelsTest)
borenet@google.com0cb1e2b2012-07-12 19:48:42 +0000433#endif