Home | History | Annotate | Download | only in hwc

Lines Matching full:clip_rect

376     blit_rect_t clip_rect;
377 clip_rect.left = max(0, subregion_rect->left);
378 clip_rect.top = max(0, subregion_rect->top);
379 clip_rect.bottom = min(screen_geom->height, subregion_rect->bottom);
380 clip_rect.right = min(screen_geom->width, subregion_rect->right);
382 e->bp.cliprect.left = clip_rect.left;
383 e->bp.cliprect.top = clip_rect.top;
384 e->bp.cliprect.width = WIDTH(clip_rect);
385 e->bp.cliprect.height = HEIGHT(clip_rect);