28 lines
530 B
C
28 lines
530 B
C
|
#include <stdlib.h>
|
||
|
#include <pixman.h>
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
pixman_image_t *dst;
|
||
|
pixman_trapezoid_t traps[1] = {
|
||
|
{
|
||
|
.top = 2147483646,
|
||
|
.bottom = 2147483647,
|
||
|
.left = {
|
||
|
.p1 = { .x = 0, .y = 0 },
|
||
|
.p2 = { .x = 0, .y = 2147483647 }
|
||
|
},
|
||
|
.right = {
|
||
|
.p1 = { .x = 65536, .y = 0 },
|
||
|
.p2 = { .x = 0, .y = 2147483647 }
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
|
||
|
dst = pixman_image_create_bits (PIXMAN_a8, 1, 1, NULL, -1);
|
||
|
|
||
|
pixman_add_trapezoids (dst, 0, 0, sizeof (traps)/sizeof (traps[0]), traps);
|
||
|
return (0);
|
||
|
}
|