Add support for the r8g8b8a8 and r8g8b8x8 formats to the tests.
[profile/ivi/pixman.git] / test / blitters-test.c
1 /*
2  * Test program, which stresses the use of different color formats and
3  * compositing operations.
4  *
5  * Script 'fuzzer-find-diff.pl' can be used to narrow down the problem in
6  * the case of test failure.
7  */
8 #include <assert.h>
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <config.h>
12 #include "utils.h"
13
14 static pixman_indexed_t rgb_palette[9];
15 static pixman_indexed_t y_palette[9];
16
17 /* Create random image for testing purposes */
18 static pixman_image_t *
19 create_random_image (pixman_format_code_t *allowed_formats,
20                      int                   max_width,
21                      int                   max_height,
22                      int                   max_extra_stride,
23                      pixman_format_code_t *used_fmt)
24 {
25     int n = 0, i, width, height, stride;
26     pixman_format_code_t fmt;
27     uint32_t *buf;
28     pixman_image_t *img;
29
30     while (allowed_formats[n] != PIXMAN_null)
31         n++;
32     fmt = allowed_formats[lcg_rand_n (n)];
33
34     width = lcg_rand_n (max_width) + 1;
35     height = lcg_rand_n (max_height) + 1;
36     stride = (width * PIXMAN_FORMAT_BPP (fmt) + 7) / 8 +
37         lcg_rand_n (max_extra_stride + 1);
38     stride = (stride + 3) & ~3;
39
40     /* do the allocation */
41     buf = aligned_malloc (64, stride * height);
42
43     /* initialize image with random data */
44     for (i = 0; i < stride * height; i++)
45     {
46         /* generation is biased to having more 0 or 255 bytes as
47          * they are more likely to be special-cased in code
48          */
49         *((uint8_t *)buf + i) = lcg_rand_n (4) ? lcg_rand_n (256) :
50             (lcg_rand_n (2) ? 0 : 255);
51     }
52
53     img = pixman_image_create_bits (fmt, width, height, buf, stride);
54
55     if (PIXMAN_FORMAT_TYPE (fmt) == PIXMAN_TYPE_COLOR)
56     {
57         pixman_image_set_indexed (img, &(rgb_palette[PIXMAN_FORMAT_BPP (fmt)]));
58     }
59     else if (PIXMAN_FORMAT_TYPE (fmt) == PIXMAN_TYPE_GRAY)
60     {
61         pixman_image_set_indexed (img, &(y_palette[PIXMAN_FORMAT_BPP (fmt)]));
62     }
63
64     image_endian_swap (img);
65
66     if (used_fmt) *used_fmt = fmt;
67     return img;
68 }
69
70 /* Free random image, and optionally update crc32 based on its data */
71 static uint32_t
72 free_random_image (uint32_t initcrc,
73                    pixman_image_t *img,
74                    pixman_format_code_t fmt)
75 {
76     uint32_t crc32 = 0;
77     int stride = pixman_image_get_stride (img);
78     uint32_t *data = pixman_image_get_data (img);
79     int height = pixman_image_get_height (img);
80
81     if (fmt != PIXMAN_null)
82     {
83         /* mask unused 'x' part */
84         if (PIXMAN_FORMAT_BPP (fmt) - PIXMAN_FORMAT_DEPTH (fmt) &&
85             PIXMAN_FORMAT_DEPTH (fmt) != 0)
86         {
87             int i;
88             uint32_t *data = pixman_image_get_data (img);
89             uint32_t mask = (1 << PIXMAN_FORMAT_DEPTH (fmt)) - 1;
90
91             if (PIXMAN_FORMAT_TYPE (fmt) == PIXMAN_TYPE_BGRA ||
92                 PIXMAN_FORMAT_TYPE (fmt) == PIXMAN_TYPE_RGBA)
93             {
94                 mask <<= (PIXMAN_FORMAT_BPP (fmt) - PIXMAN_FORMAT_DEPTH (fmt));
95             }
96
97             for (i = 0; i < 32; i++)
98                 mask |= mask << (i * PIXMAN_FORMAT_BPP (fmt));
99
100             for (i = 0; i < stride * height / 4; i++)
101                 data[i] &= mask;
102         }
103
104         /* swap endiannes in order to provide identical results on both big
105          * and litte endian systems
106          */
107         image_endian_swap (img);
108         crc32 = compute_crc32 (initcrc, data, stride * height);
109     }
110
111     pixman_image_unref (img);
112     free (data);
113
114     return crc32;
115 }
116
117 static pixman_op_t op_list[] = {
118     PIXMAN_OP_SRC,
119     PIXMAN_OP_OVER,
120     PIXMAN_OP_ADD,
121     PIXMAN_OP_CLEAR,
122     PIXMAN_OP_SRC,
123     PIXMAN_OP_DST,
124     PIXMAN_OP_OVER,
125     PIXMAN_OP_OVER_REVERSE,
126     PIXMAN_OP_IN,
127     PIXMAN_OP_IN_REVERSE,
128     PIXMAN_OP_OUT,
129     PIXMAN_OP_OUT_REVERSE,
130     PIXMAN_OP_ATOP,
131     PIXMAN_OP_ATOP_REVERSE,
132     PIXMAN_OP_XOR,
133     PIXMAN_OP_ADD,
134     PIXMAN_OP_SATURATE,
135     PIXMAN_OP_DISJOINT_CLEAR,
136     PIXMAN_OP_DISJOINT_SRC,
137     PIXMAN_OP_DISJOINT_DST,
138     PIXMAN_OP_DISJOINT_OVER,
139     PIXMAN_OP_DISJOINT_OVER_REVERSE,
140     PIXMAN_OP_DISJOINT_IN,
141     PIXMAN_OP_DISJOINT_IN_REVERSE,
142     PIXMAN_OP_DISJOINT_OUT,
143     PIXMAN_OP_DISJOINT_OUT_REVERSE,
144     PIXMAN_OP_DISJOINT_ATOP,
145     PIXMAN_OP_DISJOINT_ATOP_REVERSE,
146     PIXMAN_OP_DISJOINT_XOR,
147     PIXMAN_OP_CONJOINT_CLEAR,
148     PIXMAN_OP_CONJOINT_SRC,
149     PIXMAN_OP_CONJOINT_DST,
150     PIXMAN_OP_CONJOINT_OVER,
151     PIXMAN_OP_CONJOINT_OVER_REVERSE,
152     PIXMAN_OP_CONJOINT_IN,
153     PIXMAN_OP_CONJOINT_IN_REVERSE,
154     PIXMAN_OP_CONJOINT_OUT,
155     PIXMAN_OP_CONJOINT_OUT_REVERSE,
156     PIXMAN_OP_CONJOINT_ATOP,
157     PIXMAN_OP_CONJOINT_ATOP_REVERSE,
158     PIXMAN_OP_CONJOINT_XOR,
159     PIXMAN_OP_MULTIPLY,
160     PIXMAN_OP_SCREEN,
161     PIXMAN_OP_OVERLAY,
162     PIXMAN_OP_DARKEN,
163     PIXMAN_OP_LIGHTEN,
164     PIXMAN_OP_COLOR_DODGE,
165     PIXMAN_OP_COLOR_BURN,
166     PIXMAN_OP_HARD_LIGHT,
167     PIXMAN_OP_DIFFERENCE,
168     PIXMAN_OP_EXCLUSION,
169 #if 0 /* these use floating point math and are not always bitexact on different platforms */
170     PIXMAN_OP_SOFT_LIGHT,
171     PIXMAN_OP_HSL_HUE,
172     PIXMAN_OP_HSL_SATURATION,
173     PIXMAN_OP_HSL_COLOR,
174     PIXMAN_OP_HSL_LUMINOSITY,
175 #endif
176 };
177
178 static pixman_format_code_t img_fmt_list[] = {
179     PIXMAN_a8r8g8b8,
180     PIXMAN_x8r8g8b8,
181     PIXMAN_r5g6b5,
182     PIXMAN_r3g3b2,
183     PIXMAN_a8,
184     PIXMAN_a8b8g8r8,
185     PIXMAN_x8b8g8r8,
186     PIXMAN_b8g8r8a8,
187     PIXMAN_b8g8r8x8,
188     PIXMAN_r8g8b8a8,
189     PIXMAN_r8g8b8x8,
190     PIXMAN_x14r6g6b6,
191     PIXMAN_r8g8b8,
192     PIXMAN_b8g8r8,
193     PIXMAN_r5g6b5,
194     PIXMAN_b5g6r5,
195     PIXMAN_x2r10g10b10,
196     PIXMAN_a2r10g10b10,
197     PIXMAN_x2b10g10r10,
198     PIXMAN_a2b10g10r10,
199     PIXMAN_a1r5g5b5,
200     PIXMAN_x1r5g5b5,
201     PIXMAN_a1b5g5r5,
202     PIXMAN_x1b5g5r5,
203     PIXMAN_a4r4g4b4,
204     PIXMAN_x4r4g4b4,
205     PIXMAN_a4b4g4r4,
206     PIXMAN_x4b4g4r4,
207     PIXMAN_a8,
208     PIXMAN_r3g3b2,
209     PIXMAN_b2g3r3,
210     PIXMAN_a2r2g2b2,
211     PIXMAN_a2b2g2r2,
212     PIXMAN_c8,
213     PIXMAN_g8,
214     PIXMAN_x4c4,
215     PIXMAN_x4g4,
216     PIXMAN_c4,
217     PIXMAN_g4,
218     PIXMAN_g1,
219     PIXMAN_x4a4,
220     PIXMAN_a4,
221     PIXMAN_r1g2b1,
222     PIXMAN_b1g2r1,
223     PIXMAN_a1r1g1b1,
224     PIXMAN_a1b1g1r1,
225     PIXMAN_a1,
226     PIXMAN_null
227 };
228
229 static pixman_format_code_t mask_fmt_list[] = {
230     PIXMAN_a8r8g8b8,
231     PIXMAN_a8,
232     PIXMAN_a4,
233     PIXMAN_a1,
234     PIXMAN_null
235 };
236
237
238 /*
239  * Composite operation with pseudorandom images
240  */
241 uint32_t
242 test_composite (int testnum, int verbose)
243 {
244     int i;
245     pixman_image_t *src_img = NULL;
246     pixman_image_t *dst_img = NULL;
247     pixman_image_t *mask_img = NULL;
248     int src_width, src_height;
249     int dst_width, dst_height;
250     int src_stride, dst_stride;
251     int src_x, src_y;
252     int dst_x, dst_y;
253     int mask_x, mask_y;
254     int w, h;
255     pixman_op_t op;
256     pixman_format_code_t src_fmt, dst_fmt, mask_fmt;
257     uint32_t *dstbuf, *srcbuf, *maskbuf;
258     uint32_t crc32;
259     int max_width, max_height, max_extra_stride;
260     FLOAT_REGS_CORRUPTION_DETECTOR_START ();
261
262     max_width = max_height = 24 + testnum / 10000;
263     max_extra_stride = 4 + testnum / 1000000;
264
265     if (max_width > 256)
266         max_width = 256;
267
268     if (max_height > 16)
269         max_height = 16;
270
271     if (max_extra_stride > 8)
272         max_extra_stride = 8;
273
274     lcg_srand (testnum);
275
276     op = op_list[lcg_rand_n (sizeof (op_list) / sizeof (op_list[0]))];
277
278     if (lcg_rand_n (8))
279     {
280         /* normal image */
281         src_img = create_random_image (img_fmt_list, max_width, max_height,
282                                        max_extra_stride, &src_fmt);
283     }
284     else
285     {
286         /* solid case */
287         src_img = create_random_image (img_fmt_list, 1, 1,
288                                        max_extra_stride, &src_fmt);
289
290         pixman_image_set_repeat (src_img, PIXMAN_REPEAT_NORMAL);
291     }
292
293     dst_img = create_random_image (img_fmt_list, max_width, max_height,
294                                    max_extra_stride, &dst_fmt);
295
296     src_width = pixman_image_get_width (src_img);
297     src_height = pixman_image_get_height (src_img);
298     src_stride = pixman_image_get_stride (src_img);
299
300     dst_width = pixman_image_get_width (dst_img);
301     dst_height = pixman_image_get_height (dst_img);
302     dst_stride = pixman_image_get_stride (dst_img);
303
304     dstbuf = pixman_image_get_data (dst_img);
305     srcbuf = pixman_image_get_data (src_img);
306
307     src_x = lcg_rand_n (src_width);
308     src_y = lcg_rand_n (src_height);
309     dst_x = lcg_rand_n (dst_width);
310     dst_y = lcg_rand_n (dst_height);
311
312     mask_img = NULL;
313     mask_fmt = PIXMAN_null;
314     mask_x = 0;
315     mask_y = 0;
316     maskbuf = NULL;
317
318     if ((src_fmt == PIXMAN_x8r8g8b8 || src_fmt == PIXMAN_x8b8g8r8) &&
319         (lcg_rand_n (4) == 0))
320     {
321         /* PIXBUF */
322         mask_fmt = lcg_rand_n (2) ? PIXMAN_a8r8g8b8 : PIXMAN_a8b8g8r8;
323         mask_img = pixman_image_create_bits (mask_fmt,
324                                              src_width,
325                                              src_height,
326                                              srcbuf,
327                                              src_stride);
328         mask_x = src_x;
329         mask_y = src_y;
330         maskbuf = srcbuf;
331     }
332     else if (lcg_rand_n (2))
333     {
334         if (lcg_rand_n (2))
335         {
336             mask_img = create_random_image (mask_fmt_list, max_width, max_height,
337                                            max_extra_stride, &mask_fmt);
338         }
339         else
340         {
341             /* solid case */
342             mask_img = create_random_image (mask_fmt_list, 1, 1,
343                                            max_extra_stride, &mask_fmt);
344             pixman_image_set_repeat (mask_img, PIXMAN_REPEAT_NORMAL);
345         }
346
347         if (lcg_rand_n (2))
348             pixman_image_set_component_alpha (mask_img, 1);
349
350         mask_x = lcg_rand_n (pixman_image_get_width (mask_img));
351         mask_y = lcg_rand_n (pixman_image_get_height (mask_img));
352     }
353
354
355     w = lcg_rand_n (dst_width - dst_x + 1);
356     h = lcg_rand_n (dst_height - dst_y + 1);
357
358     if (verbose)
359     {
360         printf ("op=%d, src_fmt=%08X, dst_fmt=%08X, mask_fmt=%08X\n",
361             op, src_fmt, dst_fmt, mask_fmt);
362         printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n",
363             src_width, src_height, dst_width, dst_height);
364         printf ("src_x=%d, src_y=%d, dst_x=%d, dst_y=%d\n",
365             src_x, src_y, dst_x, dst_y);
366         printf ("src_stride=%d, dst_stride=%d\n",
367             src_stride, dst_stride);
368         printf ("w=%d, h=%d\n", w, h);
369     }
370
371     pixman_image_composite (op, src_img, mask_img, dst_img,
372                             src_x, src_y, mask_x, mask_y, dst_x, dst_y, w, h);
373
374     if (verbose)
375     {
376         int j;
377
378         printf ("---\n");
379         for (i = 0; i < dst_height; i++)
380         {
381             for (j = 0; j < dst_stride; j++)
382             {
383                 if (j == (dst_width * PIXMAN_FORMAT_BPP (dst_fmt) + 7) / 8)
384                     printf ("| ");
385
386                 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j));
387             }
388             printf ("\n");
389         }
390         printf ("---\n");
391     }
392
393     free_random_image (0, src_img, PIXMAN_null);
394     crc32 = free_random_image (0, dst_img, dst_fmt);
395
396     if (mask_img)
397     {
398         if (srcbuf == maskbuf)
399             pixman_image_unref(mask_img);
400         else
401             free_random_image (0, mask_img, PIXMAN_null);
402     }
403
404     FLOAT_REGS_CORRUPTION_DETECTOR_FINISH ();
405     return crc32;
406 }
407
408 int
409 main (int argc, const char *argv[])
410 {
411     int i;
412
413     for (i = 1; i <= 8; i++)
414     {
415         initialize_palette (&(rgb_palette[i]), i, TRUE);
416         initialize_palette (&(y_palette[i]), i, FALSE);
417     }
418
419     return fuzzer_test_main("blitters", 2000000,
420                             0x265CDFEB,
421                             test_composite, argc, argv);
422 }