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

40 lines
545 B
C
Raw Normal View History

2009-06-05 14:14:27 -06:00
#include <stdlib.h>
#include "utils.h"
2009-06-05 14:14:27 -06:00
int
main()
{
pixman_image_t *dst;
pixman_trapezoid_t traps[] = {
2009-06-05 14:14:27 -06:00
{
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
}
},
{
32768,
- 2147483647,
{
{ 0, 0 },
{ 0, 2147483647 }
},
{
{ 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);
pixman_add_trapezoids (dst, 0, 0, ARRAY_LENGTH (traps), traps);
2009-06-05 14:14:27 -06:00
return (0);
}