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