summaryrefslogtreecommitdiff
path: root/pixwrap.c
blob: ad76253d808d9dff155878719e739f584eb59e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct pix_context_t
{
    /* Destination */
    pixman_format_code_t	dst_format;
    int				dst_width;
    int				dst_height;
    int				dst_stride;
    uint32_t *			dst_bits;

    /* Src */
    pix_image_t *		src;

    /* Mask */
    pix_image_t *		mask;
};