Lines Matching defs:clip
50 * drm_rect_clip_scaled - perform a scaled clip operation
53 * @clip: clip rectangle
57 * Clip rectangle @dst by rectangle @clip. Clip rectangle @src by the
65 const struct drm_rect *clip,
70 diff = clip->x1 - dst->x1;
75 diff = clip->y1 - dst->y1;
80 diff = dst->x2 - clip->x2;
85 diff = dst->y2 - clip->y2;
91 return drm_rect_intersect(dst, clip);