aboutsummaryrefslogtreecommitdiff
path: root/test/trap-crasher.c
blob: 4e4cac297f977c3ca30b5b420dcaca221bbd9ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdlib.h>
#include "utils.h"

int
main()
{
    pixman_image_t *dst;
    pixman_trapezoid_t traps[1] = {
	{
	    2147483646,
	    2147483647,
	    {
		{ 0, 0 },
		{ 0, 2147483647 }
	    },
	    {
		{ 65536, 0 },
		{ 0, 2147483647 }
	    }
	},
    };

    dst = pixman_image_create_bits (PIXMAN_a8, 1, 1, NULL, -1);

    pixman_add_trapezoids (dst, 0, 0, ARRAY_LENGTH (traps), traps);
    return (0);
}