Lines Matching defs:rect
98 struct drm_rect rect;
267 x1 = gm12u320->fb_update.rect.x1;
268 x2 = gm12u320->fb_update.rect.x2;
269 y1 = gm12u320->fb_update.rect.y1;
270 y2 = gm12u320->fb_update.rect.y2;
415 gm12u320->fb_update.rect = *dirty;
419 struct drm_rect *rect = &gm12u320->fb_update.rect;
421 rect->x1 = min(rect->x1, dirty->x1);
422 rect->y1 = min(rect->y1, dirty->y1);
423 rect->x2 = max(rect->x2, dirty->x2);
424 rect->y2 = max(rect->y2, dirty->y2);
556 struct drm_rect rect = { 0, 0, GM12U320_USER_WIDTH, GM12U320_HEIGHT };
561 gm12u320_fb_mark_dirty(plane_state->fb, &shadow_plane_state->data[0], &rect);
576 struct drm_rect rect;
578 if (drm_atomic_helper_damage_merged(old_state, state, &rect))
579 gm12u320_fb_mark_dirty(state->fb, &shadow_plane_state->data[0], &rect);