Home | History | Annotate | Download | only in test

Lines Matching defs:combination

162 verify (int test_no, const pixel_combination_t *combination, int size)
171 pixel_checker_init (&src_checker, combination->src_format);
172 pixel_checker_init (&dest_checker, combination->dest_format);
174 &src_checker, combination->src_pixel, &source_color);
176 &dest_checker, combination->dest_pixel, &dest_color);
177 do_composite (combination->op,
182 combination->src_format, size, size, NULL, -1);
184 combination->dest_format, size, size, NULL, -1);
186 fill (src, combination->src_pixel);
187 fill (dest, combination->dest_pixel);
190 combination->op, src, NULL, dest, 0, 0, 0, 0, 0, 0, size, size);
203 printf (" operator: %s\n", operator_name (combination->op));
204 printf (" src format: %s\n", format_name (combination->src_format));
205 printf (" dest format: %s\n", format_name (combination->dest_format));
208 combination->src_pixel);
209 pixel_checker_split_pixel (&src_checker, combination->src_pixel,
215 combination->dest_pixel);
216 pixel_checker_split_pixel (&dest_checker, combination->dest_pixel,
254 const pixel_combination_t *combination = &(regressions[i]);
258 if (!verify (i, combination, j))