xenocara/lib/pixman/test/trap-crasher.c

28 lines
424 B
C
Raw Normal View History

2009-06-05 14:14:27 -06:00
#include <stdlib.h>
#include <pixman.h>
int
main()
{
pixman_image_t *dst;
pixman_trapezoid_t traps[1] = {
{
2147483646,
2147483647,
{
{ 0, 0 },
{ 0, 2147483647 }
2009-06-05 14:14:27 -06:00
},
{
{ 65536, 0 },
{ 0, 2147483647 }
2009-06-05 14:14:27 -06:00
}
},
};
2009-06-05 14:14:27 -06:00
dst = pixman_image_create_bits (PIXMAN_a8, 1, 1, NULL, -1);
2009-06-05 14:14:27 -06:00
pixman_add_trapezoids (dst, 0, 0, sizeof (traps)/sizeof (traps[0]), traps);
return (0);
}