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