Home | History | Annotate | Download | only in test

Lines Matching refs:info

29 const composite_info_t info[] =
66 make_image (const image_info_t *info)
68 char *data = malloc (info->stride * info->height);
71 for (i = 0; i < info->height * info->stride; ++i)
74 return pixman_image_create_bits (info->format, info->width, info->height, (uint32_t *)data, info->stride);
78 test_composite (const composite_info_t *info)
80 pixman_image_t *src = make_image (&info->src);
81 pixman_image_t *dest = make_image (&info->dest);
84 info->src_x, info->src_y,
86 info->dest_x, info->dest_y,
87 info->width, info->height);
97 for (i = 0; i < ARRAY_LENGTH (info); ++i)
98 test_composite (&info[i]);