Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:clip

162     struct copybit_rect_t clip;
163 intersect(&clip, scissor, dst);
165 e->dst_rect.x = clip.l;
166 e->dst_rect.y = clip.t;
167 e->dst_rect.w = clip.r - clip.l;
168 e->dst_rect.h = clip.b - clip.t;
172 delta_x = (clip.t - dst->t);
173 delta_y = (dst->r - clip.r);
174 e->src_rect.w = (clip.b - clip.t);
175 e->src_rect.h = (clip.r - clip.l);
179 delta_x = (clip.l - dst->l);
180 delta_y = (clip.t - dst->t);
181 e->src_rect.w = (clip.r - clip.l);
182 e->src_rect.h = (clip.b - clip.t);
454 struct copybit_rect_t clip;
457 while ((status == 0) && region->next(region, &clip)) {
458 intersect(&clip, &bounds, &clip);
470 set_rects(ctx, req, dst_rect, src_rect, &clip, src->horiz_padding, src->vert_padding);