Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:clip

165     struct copybit_rect_t clip;
166 intersect(&clip, scissor, dst);
168 e->dst_rect.x = clip.l;
169 e->dst_rect.y = clip.t;
170 e->dst_rect.w = clip.r - clip.l;
171 e->dst_rect.h = clip.b - clip.t;
175 delta_x = (clip.t - dst->t);
176 delta_y = (dst->r - clip.r);
177 e->src_rect.w = (clip.b - clip.t);
178 e->src_rect.h = (clip.r - clip.l);
182 delta_x = (clip.l - dst->l);
183 delta_y = (clip.t - dst->t);
184 e->src_rect.w = (clip.r - clip.l);
185 e->src_rect.h = (clip.b - clip.t);
489 struct copybit_rect_t clip;
491 while ((status == 0) && region->next(region, &clip)) {
492 intersect(&clipclip);
504 set_rects(ctx, req, dst_rect, src_rect, &clip, src->horiz_padding, src->vert_padding);