Home | History | Annotate | Download | only in pixman

Lines Matching defs:boxes

845     pixman_box32_t *boxes;
851 boxes = pixman_malloc_ab (sizeof (pixman_box32_t), n_rects);
852 if (boxes == NULL)
857 boxes = stack_boxes;
862 boxes[i].x1 = rects[i].x;
863 boxes[i].y1 = rects[i].y;
864 boxes[i].x2 = boxes[i].x1 + rects[i].width;
865 boxes[i].y2 = boxes[i].y1 + rects[i].height;
868 result = pixman_image_fill_boxes (op, dest, color, n_rects, boxes);
870 if (boxes != stack_boxes)
871 free (boxes);
881 const pixman_box32_t *boxes)
917 if (!pixman_region32_init_rects (&fill_region, boxes, n_boxes))
948 const pixman_box32_t *box = &(boxes[i]);