1 /*
2 * Copyright 2016 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 "include/private/SkHalf.h"
9 #include "include/private/SkTo.h"
10 #include "src/core/SkRasterPipeline.h"
11 #include "src/gpu/GrSwizzle.h"
12 #include "tests/Test.h"
13
DEF_TEST(SkRasterPipeline,r)14 DEF_TEST(SkRasterPipeline, r) {
15 // Build and run a simple pipeline to exercise SkRasterPipeline,
16 // drawing 50% transparent blue over opaque red in half-floats.
17 uint64_t red = 0x3c00000000003c00ull,
18 blue = 0x3800380000000000ull,
19 result;
20
21 SkRasterPipeline_MemoryCtx load_s_ctx = { &blue, 0 },
22 load_d_ctx = { &red, 0 },
23 store_ctx = { &result, 0 };
24
25 SkRasterPipeline_<256> p;
26 p.append(SkRasterPipeline::load_f16, &load_s_ctx);
27 p.append(SkRasterPipeline::load_f16_dst, &load_d_ctx);
28 p.append(SkRasterPipeline::srcover);
29 p.append(SkRasterPipeline::store_f16, &store_ctx);
30 p.run(0,0,1,1);
31
32 // We should see half-intensity magenta.
33 REPORTER_ASSERT(r, ((result >> 0) & 0xffff) == 0x3800);
34 REPORTER_ASSERT(r, ((result >> 16) & 0xffff) == 0x0000);
35 REPORTER_ASSERT(r, ((result >> 32) & 0xffff) == 0x3800);
36 REPORTER_ASSERT(r, ((result >> 48) & 0xffff) == 0x3c00);
37 }
38
DEF_TEST(SkRasterPipeline_empty,r)39 DEF_TEST(SkRasterPipeline_empty, r) {
40 // No asserts... just a test that this is safe to run.
41 SkRasterPipeline_<256> p;
42 p.run(0,0,20,1);
43 }
44
DEF_TEST(SkRasterPipeline_nonsense,r)45 DEF_TEST(SkRasterPipeline_nonsense, r) {
46 // No asserts... just a test that this is safe to run and terminates.
47 // srcover() calls st->next(); this makes sure we've always got something there to call.
48 SkRasterPipeline_<256> p;
49 p.append(SkRasterPipeline::srcover);
50 p.run(0,0,20,1);
51 }
52
DEF_TEST(SkRasterPipeline_JIT,r)53 DEF_TEST(SkRasterPipeline_JIT, r) {
54 // This tests a couple odd corners that a JIT backend can stumble over.
55
56 uint32_t buf[72] = {
57 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
58 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
59 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
60 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
61 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
62 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
63 };
64
65 SkRasterPipeline_MemoryCtx src = { buf + 0, 0 },
66 dst = { buf + 36, 0 };
67
68 // Copy buf[x] to buf[x+36] for x in [15,35).
69 SkRasterPipeline_<256> p;
70 p.append(SkRasterPipeline:: load_8888, &src);
71 p.append(SkRasterPipeline::store_8888, &dst);
72 p.run(15,0, 20,1);
73
74 for (int i = 0; i < 36; i++) {
75 if (i < 15 || i == 35) {
76 REPORTER_ASSERT(r, buf[i+36] == 0);
77 } else {
78 REPORTER_ASSERT(r, buf[i+36] == (uint32_t)(i - 11));
79 }
80 }
81 }
82
h(float f)83 static uint16_t h(float f) {
84 // Remember, a float is 1-8-23 (sign-exponent-mantissa) with 127 exponent bias.
85 uint32_t sem;
86 memcpy(&sem, &f, sizeof(sem));
87 uint32_t s = sem & 0x80000000,
88 em = sem ^ s;
89
90 // Convert to 1-5-10 half with 15 bias, flushing denorm halfs (including zero) to zero.
91 auto denorm = (int32_t)em < 0x38800000; // I32 comparison is often quicker, and always safe
92 // here.
93 return denorm ? SkTo<uint16_t>(0)
94 : SkTo<uint16_t>((s>>16) + (em>>13) - ((127-15)<<10));
95 }
96
DEF_TEST(SkRasterPipeline_tail,r)97 DEF_TEST(SkRasterPipeline_tail, r) {
98 {
99 float data[][4] = {
100 {00, 01, 02, 03},
101 {10, 11, 12, 13},
102 {20, 21, 22, 23},
103 {30, 31, 32, 33},
104 };
105
106 float buffer[4][4];
107
108 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
109 dst = { &buffer[0][0], 0 };
110
111 for (unsigned i = 1; i <= 4; i++) {
112 memset(buffer, 0xff, sizeof(buffer));
113 SkRasterPipeline_<256> p;
114 p.append(SkRasterPipeline::load_f32, &src);
115 p.append(SkRasterPipeline::store_f32, &dst);
116 p.run(0,0, i,1);
117 for (unsigned j = 0; j < i; j++) {
118 for (unsigned k = 0; k < 4; k++) {
119 if (buffer[j][k] != data[j][k]) {
120 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]);
121 }
122 }
123 }
124 for (int j = i; j < 4; j++) {
125 for (auto f : buffer[j]) {
126 REPORTER_ASSERT(r, SkScalarIsNaN(f));
127 }
128 }
129 }
130 }
131
132 {
133 float data[][2] = {
134 {00, 01},
135 {10, 11},
136 {20, 21},
137 {30, 31},
138 };
139
140 float buffer[4][4];
141
142 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
143 dst = { &buffer[0][0], 0 };
144
145 for (unsigned i = 1; i <= 4; i++) {
146 memset(buffer, 0xff, sizeof(buffer));
147 SkRasterPipeline_<256> p;
148 p.append(SkRasterPipeline::load_rgf32, &src);
149 p.append(SkRasterPipeline::store_f32, &dst);
150 p.run(0,0, i,1);
151 for (unsigned j = 0; j < i; j++) {
152 for (unsigned k = 0; k < 2; k++) {
153 if (buffer[j][k] != data[j][k]) {
154 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]);
155 }
156 }
157 if (buffer[j][2] != 0) {
158 ERRORF(r, "(%u, 2) - a: 0 r: %g\n", j, buffer[j][2]);
159 }
160 if (buffer[j][3] != 1) {
161 ERRORF(r, "(%u, 3) - a: 1 r: %g\n", j, buffer[j][3]);
162 }
163 }
164 for (int j = i; j < 4; j++) {
165 for (auto f : buffer[j]) {
166 REPORTER_ASSERT(r, SkScalarIsNaN(f));
167 }
168 }
169 }
170 }
171
172 {
173 float data[][4] = {
174 {00, 01, 02, 03},
175 {10, 11, 12, 13},
176 {20, 21, 22, 23},
177 {30, 31, 32, 33},
178 };
179
180 float buffer[4][2];
181
182 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
183 dst = { &buffer[0][0], 0 };
184
185 for (unsigned i = 1; i <= 4; i++) {
186 memset(buffer, 0xff, sizeof(buffer));
187 SkRasterPipeline_<256> p;
188 p.append(SkRasterPipeline::load_f32, &src);
189 p.append(SkRasterPipeline::store_rgf32, &dst);
190 p.run(0,0, i,1);
191 for (unsigned j = 0; j < i; j++) {
192 for (unsigned k = 0; k < 2; k++) {
193 if (buffer[j][k] != data[j][k]) {
194 ERRORF(r, "(%u, %u) - a: %g r: %g\n", j, k, data[j][k], buffer[j][k]);
195 }
196 }
197 }
198 for (int j = i; j < 4; j++) {
199 for (auto f : buffer[j]) {
200 REPORTER_ASSERT(r, SkScalarIsNaN(f));
201 }
202 }
203 }
204 }
205
206 {
207 alignas(8) uint16_t data[][4] = {
208 {h(00), h(01), h(02), h(03)},
209 {h(10), h(11), h(12), h(13)},
210 {h(20), h(21), h(22), h(23)},
211 {h(30), h(31), h(32), h(33)},
212 };
213 alignas(8) uint16_t buffer[4][4];
214 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
215 dst = { &buffer[0][0], 0 };
216
217 for (unsigned i = 1; i <= 4; i++) {
218 memset(buffer, 0xff, sizeof(buffer));
219 SkRasterPipeline_<256> p;
220 p.append(SkRasterPipeline::load_f16, &src);
221 p.append(SkRasterPipeline::store_f16, &dst);
222 p.run(0,0, i,1);
223 for (unsigned j = 0; j < i; j++) {
224 for (int k = 0; k < 4; k++) {
225 REPORTER_ASSERT(r, buffer[j][k] == data[j][k]);
226 }
227 }
228 for (int j = i; j < 4; j++) {
229 for (auto f : buffer[j]) {
230 REPORTER_ASSERT(r, f == 0xffff);
231 }
232 }
233 }
234 }
235
236 {
237 alignas(8) uint16_t data[]= {
238 h(00),
239 h(10),
240 h(20),
241 h(30),
242 };
243 alignas(8) uint16_t buffer[4][4];
244 SkRasterPipeline_MemoryCtx src = { &data[0], 0 },
245 dst = { &buffer[0][0], 0 };
246
247 for (unsigned i = 1; i <= 4; i++) {
248 memset(buffer, 0xff, sizeof(buffer));
249 SkRasterPipeline_<256> p;
250 p.append(SkRasterPipeline::load_af16, &src);
251 p.append(SkRasterPipeline::store_f16, &dst);
252 p.run(0,0, i,1);
253 for (unsigned j = 0; j < i; j++) {
254 uint16_t expected[] = {0, 0, 0, data[j]};
255 REPORTER_ASSERT(r, !memcmp(expected, &buffer[j][0], sizeof(buffer[j])));
256 }
257 for (int j = i; j < 4; j++) {
258 for (auto f : buffer[j]) {
259 REPORTER_ASSERT(r, f == 0xffff);
260 }
261 }
262 }
263 }
264
265 {
266 alignas(8) uint16_t data[][4] = {
267 {h(00), h(01), h(02), h(03)},
268 {h(10), h(11), h(12), h(13)},
269 {h(20), h(21), h(22), h(23)},
270 {h(30), h(31), h(32), h(33)},
271 };
272 alignas(8) uint16_t buffer[4];
273 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
274 dst = { &buffer[0], 0 };
275
276 for (unsigned i = 1; i <= 4; i++) {
277 memset(buffer, 0xff, sizeof(buffer));
278 SkRasterPipeline_<256> p;
279 p.append(SkRasterPipeline::load_f16, &src);
280 p.append(SkRasterPipeline::store_af16, &dst);
281 p.run(0,0, i,1);
282 for (unsigned j = 0; j < i; j++) {
283 REPORTER_ASSERT(r, !memcmp(&data[j][3], &buffer[j], sizeof(buffer[j])));
284 }
285 for (int j = i; j < 4; j++) {
286 REPORTER_ASSERT(r, buffer[j] == 0xffff);
287 }
288 }
289 }
290
291 {
292 alignas(8) uint16_t data[][4] = {
293 {h(00), h(01), h(02), h(03)},
294 {h(10), h(11), h(12), h(13)},
295 {h(20), h(21), h(22), h(23)},
296 {h(30), h(31), h(32), h(33)},
297 };
298 alignas(8) uint16_t buffer[4][2];
299 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
300 dst = { &buffer[0][0], 0 };
301
302 for (unsigned i = 1; i <= 4; i++) {
303 memset(buffer, 0xff, sizeof(buffer));
304 SkRasterPipeline_<256> p;
305 p.append(SkRasterPipeline::load_f16, &src);
306 p.append(SkRasterPipeline::store_rgf16, &dst);
307 p.run(0,0, i,1);
308 for (unsigned j = 0; j < i; j++) {
309 REPORTER_ASSERT(r, !memcmp(&buffer[j], &data[j], 2 * sizeof(uint16_t)));
310 }
311 for (int j = i; j < 4; j++) {
312 for (auto h : buffer[j]) {
313 REPORTER_ASSERT(r, h == 0xffff);
314 }
315 }
316 }
317 }
318
319 {
320 alignas(8) uint16_t data[][2] = {
321 {h(00), h(01)},
322 {h(10), h(11)},
323 {h(20), h(21)},
324 {h(30), h(31)},
325 };
326 alignas(8) uint16_t buffer[4][4];
327 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
328 dst = { &buffer[0][0], 0 };
329
330 for (unsigned i = 1; i <= 4; i++) {
331 memset(buffer, 0xff, sizeof(buffer));
332 SkRasterPipeline_<256> p;
333 p.append(SkRasterPipeline::load_rgf16, &src);
334 p.append(SkRasterPipeline::store_f16, &dst);
335 p.run(0,0, i,1);
336 for (unsigned j = 0; j < i; j++) {
337 uint16_t expected[] = {data[j][0], data[j][1], h(0), h(1)};
338 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
339 }
340 for (int j = i; j < 4; j++) {
341 for (auto h : buffer[j]) {
342 REPORTER_ASSERT(r, h == 0xffff);
343 }
344 }
345 }
346 }
347 }
348
DEF_TEST(SkRasterPipeline_u16,r)349 DEF_TEST(SkRasterPipeline_u16, r) {
350 {
351 alignas(8) uint16_t data[][2] = {
352 {0x0000, 0x0111},
353 {0x1010, 0x1111},
354 {0x2020, 0x2121},
355 {0x3030, 0x3131},
356 };
357 uint8_t buffer[4][4];
358 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
359 dst = { &buffer[0][0], 0 };
360
361 for (unsigned i = 1; i <= 4; i++) {
362 memset(buffer, 0xab, sizeof(buffer));
363 SkRasterPipeline_<256> p;
364 p.append(SkRasterPipeline::load_rg1616, &src);
365 p.append(SkRasterPipeline::store_8888, &dst);
366 p.run(0,0, i,1);
367 for (unsigned j = 0; j < i; j++) {
368 uint8_t expected[] = {
369 SkToU8(data[j][0] >> 8),
370 SkToU8(data[j][1] >> 8),
371 000,
372 0xff
373 };
374 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
375 }
376 for (int j = i; j < 4; j++) {
377 for (auto b : buffer[j]) {
378 REPORTER_ASSERT(r, b == 0xab);
379 }
380 }
381 }
382 }
383
384 {
385 alignas(8) uint16_t data[] = {
386 0x0000,
387 0x1010,
388 0x2020,
389 0x3030,
390 };
391 uint8_t buffer[4][4];
392 SkRasterPipeline_MemoryCtx src = { &data[0], 0 },
393 dst = { &buffer[0][0], 0 };
394
395 for (unsigned i = 1; i <= 4; i++) {
396 memset(buffer, 0xff, sizeof(buffer));
397 SkRasterPipeline_<256> p;
398 p.append(SkRasterPipeline::load_a16, &src);
399 p.append(SkRasterPipeline::store_8888, &dst);
400 p.run(0,0, i,1);
401 for (unsigned j = 0; j < i; j++) {
402 uint8_t expected[] = {0x00, 0x00, 0x00, SkToU8(data[j] >> 8)};
403 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
404 }
405 for (int j = i; j < 4; j++) {
406 for (auto b : buffer[j]) {
407 REPORTER_ASSERT(r, b == 0xff);
408 }
409 }
410 }
411 }
412
413 {
414 uint8_t data[][4] = {
415 {0x00, 0x01, 0x02, 0x03},
416 {0x10, 0x11, 0x12, 0x13},
417 {0x20, 0x21, 0x22, 0x23},
418 {0x30, 0x31, 0x32, 0x33},
419 };
420 alignas(8) uint16_t buffer[4];
421 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
422 dst = { &buffer[0], 0 };
423
424 for (unsigned i = 1; i <= 4; i++) {
425 memset(buffer, 0xff, sizeof(buffer));
426 SkRasterPipeline_<256> p;
427 p.append(SkRasterPipeline::load_8888, &src);
428 p.append(SkRasterPipeline::store_a16, &dst);
429 p.run(0,0, i,1);
430 for (unsigned j = 0; j < i; j++) {
431 uint16_t expected = (data[j][3] << 8) | data[j][3];
432 REPORTER_ASSERT(r, buffer[j] == expected);
433 }
434 for (int j = i; j < 4; j++) {
435 REPORTER_ASSERT(r, buffer[j] == 0xffff);
436 }
437 }
438 }
439
440 {
441 alignas(8) uint16_t data[][4] = {
442 {0x0000, 0x1000, 0x2000, 0x3000},
443 {0x0001, 0x1001, 0x2001, 0x3001},
444 {0x0002, 0x1002, 0x2002, 0x3002},
445 {0x0003, 0x1003, 0x2003, 0x3003},
446 };
447 alignas(8) uint16_t buffer[4][4];
448 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
449 dst = { &buffer[0], 0 };
450
451 for (unsigned i = 1; i <= 4; i++) {
452 memset(buffer, 0xff, sizeof(buffer));
453 SkRasterPipeline_<256> p;
454 p.append(SkRasterPipeline::load_16161616, &src);
455 p.append(SkRasterPipeline::swap_rb);
456 p.append(SkRasterPipeline::store_16161616, &dst);
457 p.run(0,0, i,1);
458 for (unsigned j = 0; j < i; j++) {
459 uint16_t expected[4] = {data[j][2], data[j][1], data[j][0], data[j][3]};
460 REPORTER_ASSERT(r, !memcmp(&expected[0], &buffer[j], sizeof(expected)));
461 }
462 for (int j = i; j < 4; j++) {
463 for (uint16_t u16 : buffer[j])
464 REPORTER_ASSERT(r, u16 == 0xffff);
465 }
466 }
467 }
468 }
469
DEF_TEST(SkRasterPipeline_lowp,r)470 DEF_TEST(SkRasterPipeline_lowp, r) {
471 uint32_t rgba[64];
472 for (int i = 0; i < 64; i++) {
473 rgba[i] = (4*i+0) << 0
474 | (4*i+1) << 8
475 | (4*i+2) << 16
476 | (4*i+3) << 24;
477 }
478
479 SkRasterPipeline_MemoryCtx ptr = { rgba, 0 };
480
481 SkRasterPipeline_<256> p;
482 p.append(SkRasterPipeline::load_8888, &ptr);
483 p.append(SkRasterPipeline::swap_rb);
484 p.append(SkRasterPipeline::store_8888, &ptr);
485 p.run(0,0,64,1);
486
487 for (int i = 0; i < 64; i++) {
488 uint32_t want = (4*i+0) << 16
489 | (4*i+1) << 8
490 | (4*i+2) << 0
491 | (4*i+3) << 24;
492 if (rgba[i] != want) {
493 ERRORF(r, "got %08x, want %08x\n", rgba[i], want);
494 }
495 }
496 }
497
DEF_TEST(SkRasterPipeline_swizzle,r)498 DEF_TEST(SkRasterPipeline_swizzle, r) {
499 // This takes the lowp code path
500 {
501 uint16_t rg[64];
502 for (int i = 0; i < 64; i++) {
503 rg[i] = (4*i+0) << 0
504 | (4*i+1) << 8;
505 }
506
507 GrSwizzle swizzle("g1b1");
508
509 SkRasterPipeline_MemoryCtx ptr = { rg, 0 };
510 SkRasterPipeline_<256> p;
511 p.append(SkRasterPipeline::load_rg88, &ptr);
512 swizzle.apply(&p);
513 p.append(SkRasterPipeline::store_rg88, &ptr);
514 p.run(0,0,64,1);
515
516 for (int i = 0; i < 64; i++) {
517 uint32_t want = 0xff << 8
518 | (4*i+1) << 0;
519 if (rg[i] != want) {
520 ERRORF(r, "got %08x, want %08x\n", rg[i], want);
521 }
522 }
523 }
524 // This takes the highp code path
525 {
526 float rg[64][2];
527 for (int i = 0; i < 64; i++) {
528 rg[i][0] = i + 1;
529 rg[i][1] = 2 * i + 1;
530 }
531
532 GrSwizzle swizzle("0gra");
533
534 uint16_t buffer[64][4];
535 SkRasterPipeline_MemoryCtx src = { rg, 0 },
536 dst = { buffer, 0};
537 SkRasterPipeline_<256> p;
538 p.append(SkRasterPipeline::load_rgf32, &src);
539 swizzle.apply(&p);
540 p.append(SkRasterPipeline::store_f16, &dst);
541 p.run(0,0,64,1);
542
543 for (int i = 0; i < 64; i++) {
544 uint16_t want[4] {
545 h(0),
546 h(2 * i + 1),
547 h(i + 1),
548 h(1),
549 };
550 REPORTER_ASSERT(r, !memcmp(want, buffer[i], sizeof(buffer[i])));
551 }
552 }
553 }
554
DEF_TEST(SkRasterPipeline_lowp_clamp01,r)555 DEF_TEST(SkRasterPipeline_lowp_clamp01, r) {
556 // This may seem like a funny pipeline to create,
557 // but it certainly shouldn't crash when you run it.
558
559 uint32_t rgba = 0xff00ff00;
560
561 SkRasterPipeline_MemoryCtx ptr = { &rgba, 0 };
562
563 SkRasterPipeline_<256> p;
564 p.append(SkRasterPipeline::load_8888, &ptr);
565 p.append(SkRasterPipeline::swap_rb);
566 p.append(SkRasterPipeline::clamp_0);
567 p.append(SkRasterPipeline::clamp_1);
568 p.append(SkRasterPipeline::store_8888, &ptr);
569 p.run(0,0,1,1);
570 }
571