Home | History | Annotate | Download | only in core

Lines Matching refs:dst_rect

464                                         const LayerRect &src_rect, const LayerRect &dst_rect,
469 float dst_width = dst_rect.right - dst_rect.left;
473 SplitRect(src_rect, dst_rect, &left_pipe->src_roi, &left_pipe->dst_roi, &right_pipe->src_roi,
479 left_pipe->dst_roi = dst_rect;
488 const LayerRect &src_rect, const LayerRect &dst_rect,
506 dst_left = dst_rect;
554 LayerRect dst_rect = layer.dst_rect;
556 error = ValidateDimensions(src_rect, dst_rect);
562 error = ValidateScaling(src_rect, dst_rect, false /*rotated90 */, layout,
569 error = SrcSplitConfig(display_resource_ctx, src_rect, dst_rect, layer_config);
571 error = DisplaySplitConfig(display_resource_ctx, src_rect, dst_rect, layer_config);
588 Log(kTagResources, "input layer dst_rect", layer.dst_rect);
590 Log(kTagResources, "cropped dst_rect", dst_rect);
667 const LayerRect &dst = layer->dst_rect;
677 Log(kTagResources, "input layer dst_rect", dst);
723 const LayerRect &dst_rect = pipe_info->dst_roi;
725 error = ValidateDimensions(src_rect, dst_rect);
731 error = ValidateScaling(src_rect, dst_rect, false /* rotated90 */, layout,
849 void ResourceDefault::SplitRect(const LayerRect &src_rect, const LayerRect &dst_rect,
854 float dst_width = dst_rect.right - dst_rect.left;
869 dst_left->top = dst_rect.top;
870 dst_left->bottom = dst_rect.bottom;
871 dst_right->top = dst_rect.top;
872 dst_right->bottom = dst_rect.bottom;
874 dst_left->left = dst_rect.left;
875 dst_left->right = dst_rect.left + dst_width;
877 dst_right->right = dst_rect.right;