blob: 37c51ae9092518382d7afdfc80e8aa06c9f24336 [file] [log] [blame]
mtklein281b33f2016-07-12 15:01:26 -07001/*
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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/private/SkHalf.h"
9#include "include/private/SkTo.h"
10#include "src/core/SkRasterPipeline.h"
Brian Salomon3ec1f542019-06-17 17:54:57 +000011#include "src/gpu/GrSwizzle.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "tests/Test.h"
mtklein281b33f2016-07-12 15:01:26 -070013
mtklein281b33f2016-07-12 15:01:26 -070014DEF_TEST(SkRasterPipeline, r) {
Mike Klein9161ef02016-10-04 14:03:27 -040015 // Build and run a simple pipeline to exercise SkRasterPipeline,
16 // drawing 50% transparent blue over opaque red in half-floats.
Mike Klein26bea5d2016-10-05 10:36:38 -040017 uint64_t red = 0x3c00000000003c00ull,
18 blue = 0x3800380000000000ull,
19 result;
Mike Kleind0ccb572016-10-05 09:36:26 -040020
Mike Kleinb11ab572018-10-24 06:42:14 -040021 SkRasterPipeline_MemoryCtx load_s_ctx = { &blue, 0 },
22 load_d_ctx = { &red, 0 },
23 store_ctx = { &result, 0 };
Mike Kleinbd3fe472016-10-25 15:43:46 -040024
Mike Kleinb24704d2017-05-24 07:53:00 -040025 SkRasterPipeline_<256> p;
Mike Klein9f2b3d12017-06-27 17:26:50 -040026 p.append(SkRasterPipeline::load_f16, &load_s_ctx);
27 p.append(SkRasterPipeline::load_f16_dst, &load_d_ctx);
Mike Klein9161ef02016-10-04 14:03:27 -040028 p.append(SkRasterPipeline::srcover);
Mike Kleinbd3fe472016-10-25 15:43:46 -040029 p.append(SkRasterPipeline::store_f16, &store_ctx);
Mike Klein45c16fa2017-07-18 18:15:13 -040030 p.run(0,0,1,1);
mtklein281b33f2016-07-12 15:01:26 -070031
Mike Klein9161ef02016-10-04 14:03:27 -040032 // We should see half-intensity magenta.
Mike Klein26bea5d2016-10-05 10:36:38 -040033 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);
mtklein281b33f2016-07-12 15:01:26 -070037}
mtklein0abddf72016-07-13 08:22:20 -070038
39DEF_TEST(SkRasterPipeline_empty, r) {
40 // No asserts... just a test that this is safe to run.
Mike Kleinb24704d2017-05-24 07:53:00 -040041 SkRasterPipeline_<256> p;
Mike Klein45c16fa2017-07-18 18:15:13 -040042 p.run(0,0,20,1);
mtklein0abddf72016-07-13 08:22:20 -070043}
44
45DEF_TEST(SkRasterPipeline_nonsense, r) {
46 // No asserts... just a test that this is safe to run and terminates.
Mike Klein9161ef02016-10-04 14:03:27 -040047 // srcover() calls st->next(); this makes sure we've always got something there to call.
Mike Kleinb24704d2017-05-24 07:53:00 -040048 SkRasterPipeline_<256> p;
Mike Klein9161ef02016-10-04 14:03:27 -040049 p.append(SkRasterPipeline::srcover);
Mike Klein45c16fa2017-07-18 18:15:13 -040050 p.run(0,0,20,1);
mtklein0abddf72016-07-13 08:22:20 -070051}
Mike Klein7ba89a12017-01-10 13:42:51 -050052
53DEF_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
Mike Kleinb11ab572018-10-24 06:42:14 -040065 SkRasterPipeline_MemoryCtx src = { buf + 0, 0 },
Mike Klein45c16fa2017-07-18 18:15:13 -040066 dst = { buf + 36, 0 };
Mike Klein7ba89a12017-01-10 13:42:51 -050067
68 // Copy buf[x] to buf[x+36] for x in [15,35).
Mike Kleinb24704d2017-05-24 07:53:00 -040069 SkRasterPipeline_<256> p;
Mike Klein7ba89a12017-01-10 13:42:51 -050070 p.append(SkRasterPipeline:: load_8888, &src);
71 p.append(SkRasterPipeline::store_8888, &dst);
Mike Klein45c16fa2017-07-18 18:15:13 -040072 p.run(15,0, 20,1);
Mike Klein7ba89a12017-01-10 13:42:51 -050073
74 for (int i = 0; i < 36; i++) {
75 if (i < 15 || i == 35) {
Mike Klein45c16fa2017-07-18 18:15:13 -040076 REPORTER_ASSERT(r, buf[i+36] == 0);
Mike Klein7ba89a12017-01-10 13:42:51 -050077 } else {
Mike Klein45c16fa2017-07-18 18:15:13 -040078 REPORTER_ASSERT(r, buf[i+36] == (uint32_t)(i - 11));
Mike Klein7ba89a12017-01-10 13:42:51 -050079 }
80 }
81}
Herb Derbyd1f08302017-05-26 15:42:28 -040082
83static 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
Herb Derbyd1f08302017-05-26 15:42:28 -040097DEF_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];
Mike Klein45c16fa2017-07-18 18:15:13 -0400107
Mike Kleinb11ab572018-10-24 06:42:14 -0400108 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
Mike Klein45c16fa2017-07-18 18:15:13 -0400109 dst = { &buffer[0][0], 0 };
Herb Derbyd1f08302017-05-26 15:42:28 -0400110
Herb Derby84dcac32017-05-30 16:56:32 -0400111 for (unsigned i = 1; i <= 4; i++) {
Herb Derbyd1f08302017-05-26 15:42:28 -0400112 memset(buffer, 0xff, sizeof(buffer));
113 SkRasterPipeline_<256> p;
114 p.append(SkRasterPipeline::load_f32, &src);
115 p.append(SkRasterPipeline::store_f32, &dst);
Mike Klein45c16fa2017-07-18 18:15:13 -0400116 p.run(0,0, i,1);
Herb Derbyd1f08302017-05-26 15:42:28 -0400117 for (unsigned j = 0; j < i; j++) {
Herb Derby84dcac32017-05-30 16:56:32 -0400118 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 }
Herb Derbyd1f08302017-05-26 15:42:28 -0400123 }
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 {
Brian Salomon217522c2019-06-11 15:55:30 -0400133 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 {
Mike Klein0bf89262018-02-26 13:34:21 -0500207 alignas(8) uint16_t data[][4] = {
Herb Derbyd1f08302017-05-26 15:42:28 -0400208 {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 };
Mike Klein0bf89262018-02-26 13:34:21 -0500213 alignas(8) uint16_t buffer[4][4];
Mike Kleinb11ab572018-10-24 06:42:14 -0400214 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
Mike Klein45c16fa2017-07-18 18:15:13 -0400215 dst = { &buffer[0][0], 0 };
Herb Derbyd1f08302017-05-26 15:42:28 -0400216
Herb Derby84dcac32017-05-30 16:56:32 -0400217 for (unsigned i = 1; i <= 4; i++) {
Herb Derbyd1f08302017-05-26 15:42:28 -0400218 memset(buffer, 0xff, sizeof(buffer));
219 SkRasterPipeline_<256> p;
220 p.append(SkRasterPipeline::load_f16, &src);
221 p.append(SkRasterPipeline::store_f16, &dst);
Mike Klein45c16fa2017-07-18 18:15:13 -0400222 p.run(0,0, i,1);
Herb Derbyd1f08302017-05-26 15:42:28 -0400223 for (unsigned j = 0; j < i; j++) {
224 REPORTER_ASSERT(r,
225 !memcmp(&data[j][0], &buffer[j][0], sizeof(buffer[j])));
226 }
227 for (int j = i; j < 4; j++) {
228 for (auto f : buffer[j]) {
229 REPORTER_ASSERT(r, f == 0xffff);
230 }
231 }
232 }
233 }
Brian Salomon217522c2019-06-11 15:55:30 -0400234
235 {
236 alignas(8) uint16_t data[]= {
237 h(00),
238 h(10),
239 h(20),
240 h(30),
241 };
242 alignas(8) uint16_t buffer[4][4];
243 SkRasterPipeline_MemoryCtx src = { &data[0], 0 },
244 dst = { &buffer[0][0], 0 };
245
246 for (unsigned i = 1; i <= 4; i++) {
247 memset(buffer, 0xff, sizeof(buffer));
248 SkRasterPipeline_<256> p;
249 p.append(SkRasterPipeline::load_af16, &src);
250 p.append(SkRasterPipeline::store_f16, &dst);
251 p.run(0,0, i,1);
252 for (unsigned j = 0; j < i; j++) {
253 uint16_t expected[] = {0, 0, 0, data[j]};
254 REPORTER_ASSERT(r, !memcmp(expected, &buffer[j][0], sizeof(buffer[j])));
255 }
256 for (int j = i; j < 4; j++) {
257 for (auto f : buffer[j]) {
258 REPORTER_ASSERT(r, f == 0xffff);
259 }
260 }
261 }
262 }
263
264 {
265 alignas(8) uint16_t data[][4] = {
266 {h(00), h(01), h(02), h(03)},
267 {h(10), h(11), h(12), h(13)},
268 {h(20), h(21), h(22), h(23)},
269 {h(30), h(31), h(32), h(33)},
270 };
271 alignas(8) uint16_t buffer[4];
272 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
273 dst = { &buffer[0], 0 };
274
275 for (unsigned i = 1; i <= 4; i++) {
276 memset(buffer, 0xff, sizeof(buffer));
277 SkRasterPipeline_<256> p;
278 p.append(SkRasterPipeline::load_f16, &src);
279 p.append(SkRasterPipeline::store_af16, &dst);
280 p.run(0,0, i,1);
281 for (unsigned j = 0; j < i; j++) {
282 REPORTER_ASSERT(r, !memcmp(&data[j][3], &buffer[j], sizeof(buffer[j])));
283 }
284 for (int j = i; j < 4; j++) {
285 REPORTER_ASSERT(r, buffer[j] == 0xffff);
286 }
287 }
288 }
289
290 {
291 alignas(8) uint16_t data[][4] = {
292 {h(00), h(01), h(02), h(03)},
293 {h(10), h(11), h(12), h(13)},
294 {h(20), h(21), h(22), h(23)},
295 {h(30), h(31), h(32), h(33)},
296 };
297 alignas(8) uint16_t buffer[4][2];
298 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
299 dst = { &buffer[0][0], 0 };
300
301 for (unsigned i = 1; i <= 4; i++) {
302 memset(buffer, 0xff, sizeof(buffer));
303 SkRasterPipeline_<256> p;
304 p.append(SkRasterPipeline::load_f16, &src);
305 p.append(SkRasterPipeline::store_rgf16, &dst);
306 p.run(0,0, i,1);
307 for (unsigned j = 0; j < i; j++) {
308 REPORTER_ASSERT(r, !memcmp(&buffer[j], &data[j], 2 * sizeof(uint16_t)));
309 }
310 for (int j = i; j < 4; j++) {
311 for (auto h : buffer[j]) {
312 REPORTER_ASSERT(r, h == 0xffff);
313 }
314 }
315 }
316 }
317
318 {
319 alignas(8) uint16_t data[][2] = {
320 {h(00), h(01)},
321 {h(10), h(11)},
322 {h(20), h(21)},
323 {h(30), h(31)},
324 };
325 alignas(8) uint16_t buffer[4][4];
326 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
327 dst = { &buffer[0][0], 0 };
328
329 for (unsigned i = 1; i <= 4; i++) {
330 memset(buffer, 0xff, sizeof(buffer));
331 SkRasterPipeline_<256> p;
332 p.append(SkRasterPipeline::load_rgf16, &src);
333 p.append(SkRasterPipeline::store_f16, &dst);
334 p.run(0,0, i,1);
335 for (unsigned j = 0; j < i; j++) {
336 uint16_t expected[] = {data[j][0], data[j][1], h(0), h(1)};
337 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
338 }
339 for (int j = i; j < 4; j++) {
340 for (auto h : buffer[j]) {
341 REPORTER_ASSERT(r, h == 0xffff);
342 }
343 }
344 }
345 }
346}
347
348DEF_TEST(SkRasterPipeline_u16, r) {
349 {
350 alignas(8) uint16_t data[][2] = {
351 {0x0000, 0x0111},
352 {0x1010, 0x1111},
353 {0x2020, 0x2121},
354 {0x3030, 0x3131},
355 };
356 uint8_t buffer[4][4];
357 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
358 dst = { &buffer[0][0], 0 };
359
360 for (unsigned i = 1; i <= 4; i++) {
361 memset(buffer, 0xab, sizeof(buffer));
362 SkRasterPipeline_<256> p;
363 p.append(SkRasterPipeline::load_rg1616, &src);
364 p.append(SkRasterPipeline::store_8888, &dst);
365 p.run(0,0, i,1);
366 for (unsigned j = 0; j < i; j++) {
367 uint8_t expected[] = {
368 SkToU8(data[j][0] >> 8),
369 SkToU8(data[j][1] >> 8),
370 000,
371 0xff
372 };
373 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
374 }
375 for (int j = i; j < 4; j++) {
376 for (auto b : buffer[j]) {
377 REPORTER_ASSERT(r, b == 0xab);
378 }
379 }
380 }
381 }
382
383 alignas(8) uint16_t data[] = {
384 0x0000,
385 0x1010,
386 0x2020,
387 0x3030,
388 };
389 uint8_t buffer[4][4];
390 SkRasterPipeline_MemoryCtx src = { &data[0], 0 },
391 dst = { &buffer[0][0], 0 };
392
393 for (unsigned i = 1; i <= 4; i++) {
394 memset(buffer, 0xff, sizeof(buffer));
395 SkRasterPipeline_<256> p;
396 p.append(SkRasterPipeline::load_a16, &src);
397 p.append(SkRasterPipeline::store_8888, &dst);
398 p.run(0,0, i,1);
399 for (unsigned j = 0; j < i; j++) {
400 uint8_t expected[] = {0x00, 0x00, 0x00, SkToU8(data[j] >> 8)};
401 REPORTER_ASSERT(r, !memcmp(&buffer[j], expected, sizeof(expected)));
402 }
403 for (int j = i; j < 4; j++) {
404 for (auto b : buffer[j]) {
405 REPORTER_ASSERT(r, b == 0xff);
406 }
407 }
408 }
409
410 {
411 uint8_t data[][4] = {
412 {0x00, 0x01, 0x02, 0x03},
413 {0x10, 0x11, 0x12, 0x13},
414 {0x20, 0x21, 0x22, 0x23},
415 {0x30, 0x31, 0x32, 0x33},
416 };
417 alignas(8) uint16_t buffer[4];
418 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
419 dst = { &buffer[0], 0 };
420
421 for (unsigned i = 1; i <= 4; i++) {
422 memset(buffer, 0xff, sizeof(buffer));
423 SkRasterPipeline_<256> p;
424 p.append(SkRasterPipeline::load_8888, &src);
425 p.append(SkRasterPipeline::store_a16, &dst);
426 p.run(0,0, i,1);
427 for (unsigned j = 0; j < i; j++) {
428 uint16_t expected = (data[j][3] << 8) | data[j][3];
429 REPORTER_ASSERT(r, buffer[j] == expected);
430 }
431 for (int j = i; j < 4; j++) {
432 REPORTER_ASSERT(r, buffer[j] == 0xffff);
433 }
434 }
435 }
Brian Salomond608e222019-06-12 17:42:58 -0400436
437 {
438 alignas(8) uint16_t data[][4] = {
439 {0x0000, 0x1000, 0x2000, 0x3000},
440 {0x0001, 0x1001, 0x2001, 0x3001},
441 {0x0002, 0x1002, 0x2002, 0x3002},
442 {0x0003, 0x1003, 0x2003, 0x3003},
443 };
444 alignas(8) uint16_t buffer[4][4];
445 SkRasterPipeline_MemoryCtx src = { &data[0][0], 0 },
446 dst = { &buffer[0], 0 };
447
448 for (unsigned i = 1; i <= 4; i++) {
449 memset(buffer, 0xff, sizeof(buffer));
450 SkRasterPipeline_<256> p;
451 p.append(SkRasterPipeline::load_16161616, &src);
452 p.append(SkRasterPipeline::swap_rb);
453 p.append(SkRasterPipeline::store_16161616, &dst);
454 p.run(0,0, i,1);
455 for (unsigned j = 0; j < i; j++) {
456 uint16_t expected[4] = {data[j][2], data[j][1], data[j][0], data[j][3]};
457 REPORTER_ASSERT(r, !memcmp(&expected[0], &buffer[j], sizeof(expected)));
458 }
459 for (int j = i; j < 4; j++) {
460 for (uint16_t u16 : buffer[j])
461 REPORTER_ASSERT(r, u16 == 0xffff);
462 }
463 }
464 }
Herb Derbyd1f08302017-05-26 15:42:28 -0400465}
Mike Kleinbba02c22017-06-02 10:03:30 -0400466
467DEF_TEST(SkRasterPipeline_lowp, r) {
468 uint32_t rgba[64];
469 for (int i = 0; i < 64; i++) {
470 rgba[i] = (4*i+0) << 0
471 | (4*i+1) << 8
472 | (4*i+2) << 16
473 | (4*i+3) << 24;
474 }
475
Mike Kleinb11ab572018-10-24 06:42:14 -0400476 SkRasterPipeline_MemoryCtx ptr = { rgba, 0 };
Mike Kleinbba02c22017-06-02 10:03:30 -0400477
478 SkRasterPipeline_<256> p;
Mike Klein1a3eb522018-10-18 10:11:00 -0400479 p.append(SkRasterPipeline::load_8888, &ptr);
480 p.append(SkRasterPipeline::swap_rb);
Mike Kleinbba02c22017-06-02 10:03:30 -0400481 p.append(SkRasterPipeline::store_8888, &ptr);
Mike Klein45c16fa2017-07-18 18:15:13 -0400482 p.run(0,0,64,1);
Mike Kleinbba02c22017-06-02 10:03:30 -0400483
484 for (int i = 0; i < 64; i++) {
485 uint32_t want = (4*i+0) << 16
486 | (4*i+1) << 8
487 | (4*i+2) << 0
488 | (4*i+3) << 24;
489 if (rgba[i] != want) {
490 ERRORF(r, "got %08x, want %08x\n", rgba[i], want);
491 }
492 }
493}
Mike Kleinea045b52018-08-23 12:13:58 -0400494
Brian Salomon217522c2019-06-11 15:55:30 -0400495DEF_TEST(SkRasterPipeline_swizzle, r) {
496 // This takes the lowp code path
497 {
498 uint16_t rg[64];
499 for (int i = 0; i < 64; i++) {
500 rg[i] = (4*i+0) << 0
501 | (4*i+1) << 8;
502 }
503
504 GrSwizzle swizzle("g1b1");
505
506 SkRasterPipeline_MemoryCtx ptr = { rg, 0 };
507 SkRasterPipeline_<256> p;
508 p.append(SkRasterPipeline::load_rg88, &ptr);
509 swizzle.apply(&p);
510 p.append(SkRasterPipeline::store_rg88, &ptr);
511 p.run(0,0,64,1);
512
513 for (int i = 0; i < 64; i++) {
514 uint32_t want = 0xff << 8
515 | (4*i+1) << 0;
516 if (rg[i] != want) {
517 ERRORF(r, "got %08x, want %08x\n", rg[i], want);
518 }
519 }
520 }
521 // This takes the highp code path
522 {
523 float rg[64][2];
524 for (int i = 0; i < 64; i++) {
525 rg[i][0] = i + 1;
526 rg[i][1] = 2 * i + 1;
527 }
528
Brian Salomonf30b1c12019-06-20 12:25:02 -0400529 GrSwizzle swizzle("0gra");
Brian Salomon217522c2019-06-11 15:55:30 -0400530
531 uint16_t buffer[64][4];
532 SkRasterPipeline_MemoryCtx src = { rg, 0 },
533 dst = { buffer, 0};
534 SkRasterPipeline_<256> p;
535 p.append(SkRasterPipeline::load_rgf32, &src);
536 swizzle.apply(&p);
537 p.append(SkRasterPipeline::store_f16, &dst);
538 p.run(0,0,64,1);
539
540 for (int i = 0; i < 64; i++) {
541 uint16_t want[4] {
Brian Salomonf30b1c12019-06-20 12:25:02 -0400542 h(0),
Brian Salomon217522c2019-06-11 15:55:30 -0400543 h(2 * i + 1),
544 h(i + 1),
545 h(1),
546 };
547 REPORTER_ASSERT(r, !memcmp(want, buffer[i], sizeof(buffer[i])));
548 }
549 }
550}
551
Mike Kleinea045b52018-08-23 12:13:58 -0400552DEF_TEST(SkRasterPipeline_lowp_clamp01, r) {
553 // This may seem like a funny pipeline to create,
554 // but it certainly shouldn't crash when you run it.
555
556 uint32_t rgba = 0xff00ff00;
557
Mike Kleinb11ab572018-10-24 06:42:14 -0400558 SkRasterPipeline_MemoryCtx ptr = { &rgba, 0 };
Mike Kleinea045b52018-08-23 12:13:58 -0400559
560 SkRasterPipeline_<256> p;
Mike Klein1a3eb522018-10-18 10:11:00 -0400561 p.append(SkRasterPipeline::load_8888, &ptr);
562 p.append(SkRasterPipeline::swap_rb);
Mike Kleinea045b52018-08-23 12:13:58 -0400563 p.append(SkRasterPipeline::clamp_0);
564 p.append(SkRasterPipeline::clamp_1);
565 p.append(SkRasterPipeline::store_8888, &ptr);
566 p.run(0,0,1,1);
567}