Home | History | Annotate | Download | only in vmwgfx

Lines Matching defs:clip

854  * @vclips: Array of clip rects.
855 * @num_clips: Number of clip rects in @vclips.
2436 * @dest_x: X coordinate offset for the crtc / destination clip rects.
2437 * @dest_y: Y coordinate offset for the crtc / destination clip rects.
2439 * @increment: Integer with which to increment the clip counter when looping.
2440 * Used to skip a predetermined number of clip rects.
2497 * Select clip array type. Note that integer type
2520 /* Skip this clip if it's outside the crtc region */
2526 /* Clip right and bottom to crtc limits */
2532 /* Clip left and top to crtc limits */
2540 dirty->clip(dirty);
2590 * @clips: Clip rects in framebuffer (surface) space.
2592 * @increment: Integer with which to increment the clip counter when looping.
2593 * Used to skip a predetermined number of clip rects.
2804 struct drm_rect clip;
2820 drm_atomic_for_each_plane_damage(&iter, &clip)
2875 drm_atomic_for_each_plane_damage(&iter, &clip) {
2876 uint32_t fb_x = clip.x1;
2877 uint32_t fb_y = clip.y1;
2879 vmw_du_translate_to_crtc(state, &clip);
2880 if (update->clip) {
2881 curr_size = update->clip(update, cmd_next, &clip, fb_x,
2886 bb.x1 = min_t(int, bb.x1, clip.x1);
2887 bb.y1 = min_t(int, bb.y1, clip.y1);
2888 bb.x2 = max_t(int, bb.x2, clip.x2);
2889 bb.y2 = max_t(int, bb.y2, clip.y2);