Lines Matching defs:combination
2858 verify (int test_no, const pixel_combination_t *combination, int size,
2864 pixman_bool_t have_mask = (combination->mask_format != PIXMAN_null);
2869 pixel_checker_init (&src_checker, combination->src_format);
2871 pixel_checker_init (&mask_checker, combination->mask_format);
2872 pixel_checker_init (&dest_checker, combination->dest_format);
2875 &src_checker, combination->src_pixel, &source_color);
2876 if (combination->mask_format != PIXMAN_null)
2879 &mask_checker, combination->mask_pixel, &mask_color);
2882 &dest_checker, combination->dest_pixel, &dest_color);
2884 do_composite (combination->op,
2891 combination->src_format, size, size, NULL, -1);
2895 combination->mask_format, size, size, NULL, -1);
2900 combination->dest_format, size, size, NULL, -1);
2902 fill (src, combination->src_pixel);
2904 fill (mask, combination->mask_pixel);
2905 fill (dest, combination->dest_pixel);
2908 combination->op, src,
2923 printf (" operator: %s (%s)\n", operator_name (combination->op),
2925 printf (" src format: %s\n", format_name (combination->src_format));
2927 printf (" mask format: %s\n", format_name (combination->mask_format));
2928 printf (" dest format: %s\n", format_name (combination->dest_format));
2932 combination->src_pixel);
2933 pixel_checker_split_pixel (&src_checker, combination->src_pixel,
2941 combination->mask_pixel);
2942 pixel_checker_split_pixel (&mask_checker, combination->mask_pixel,
2949 combination->dest_pixel);
2950 pixel_checker_split_pixel (&dest_checker, combination->dest_pixel,
3003 const pixel_combination_t *combination = &(regressions[i]);
3009 ca = combination->mask_format == PIXMAN_null ? 1 : 2;
3013 if (!verify (i, combination, j, k))