Lines Matching defs:clip
849 * @vclips: Array of clip rects.
850 * @num_clips: Number of clip rects in @vclips.
2341 * @dest_x: X coordinate offset for the crtc / destination clip rects.
2342 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
2344 * @increment: Integer with which to increment the clip counter when looping.
2345 * Used to skip a predetermined number of clip rects.
2402 * Select clip array type. Note that integer type
2425 /* Skip this clip if it's outside the crtc region */
2445 dirty->clip(dirty);
2497 * @increment: Integer with which to increment the clip counter when looping.
2498 * Used to skip a predetermined number of clip rects.
2709 struct drm_rect clip;
2725 drm_atomic_for_each_plane_damage(&iter, &clip)
2780 drm_atomic_for_each_plane_damage(&iter, &clip) {
2781 uint32_t fb_x = clip.x1;
2782 uint32_t fb_y = clip.y1;
2784 vmw_du_translate_to_crtc(state, &clip);
2785 if (update->clip) {
2786 curr_size = update->clip(update, cmd_next, &clip, fb_x,
2791 bb.x1 = min_t(int, bb.x1, clip.x1);
2792 bb.y1 = min_t(int, bb.y1, clip.y1);
2793 bb.x2 = max_t(int, bb.x2, clip.x2);
2794 bb.y2 = max_t(int, bb.y2, clip.y2);