Lines Matching refs:rect
96 struct drm_rect rect;
261 x1 = gm12u320->fb_update.rect.x1;
262 x2 = gm12u320->fb_update.rect.x2;
263 y1 = gm12u320->fb_update.rect.y1;
264 y2 = gm12u320->fb_update.rect.y2;
424 gm12u320->fb_update.rect = *dirty;
427 struct drm_rect *rect = &gm12u320->fb_update.rect;
429 rect->x1 = min(rect->x1, dirty->x1);
430 rect->y1 = min(rect->y1, dirty->y1);
431 rect->x2 = max(rect->x2, dirty->x2);
432 rect->y2 = max(rect->y2, dirty->y2);
563 struct drm_rect rect = { 0, 0, GM12U320_USER_WIDTH, GM12U320_HEIGHT };
567 gm12u320_fb_mark_dirty(plane_state->fb, &rect);
581 struct drm_rect rect;
583 if (drm_atomic_helper_damage_merged(old_state, state, &rect))
584 gm12u320_fb_mark_dirty(pipe->plane.state->fb, &rect);