Lines Matching refs:dst_img
218 check_transform (pixman_image_t *dst_img, in check_transform() argument
230 v2.vector[0] = pixman_int_to_fixed (dst_img->bits.width) - in check_transform()
232 v2.vector[1] = pixman_int_to_fixed (dst_img->bits.height) - in check_transform()
265 pixman_image_t *src_img, *dst_img, *mask_img; in test_cover() local
310 dst_img = pixman_image_create_bits (dst_fmt, DST_WIDTH, DST_HEIGHT, in test_cover()
312 prng_randmemset (dst_img->bits.bits, in test_cover()
313 dst_img->bits.rowstride * DST_HEIGHT * sizeof (uint32_t), in test_cover()
315 image_endian_swap (dst_img); in test_cover()
322 src_transform.matrix[0][2] = calc_translate (dst_img->bits.width, in test_cover()
325 src_transform.matrix[1][2] = calc_translate (dst_img->bits.height, in test_cover()
342 mask_transform.matrix[0][2] = calc_translate (dst_img->bits.width, in test_cover()
346 mask_transform.matrix[1][2] = calc_translate (dst_img->bits.height, in test_cover()
401 check_transform (dst_img, src_img, &src_transform, bilinear); in test_cover()
403 check_transform (dst_img, mask_img, &mask_transform, bilinear); in test_cover()
406 pixman_image_composite (op, src_img, mask_img, dst_img, in test_cover()
408 dst_img->bits.width, dst_img->bits.height); in test_cover()
411 print_image (dst_img); in test_cover()
413 crc32 = compute_crc32_for_image (0, dst_img); in test_cover()
415 pixman_image_unref (dst_img); in test_cover()