Lines Matching refs:rout

45 …      lv_coord_t rout, lv_coord_t rin, lv_color_t color, lv_opa_t opa, lv_blend_mode_t blend_mode);
142 int32_t rout = LV_MIN(dsc->radius, short_side >> 1); in draw_bg() local
149 if(rout > 0 || mask_any) { in draw_bg()
151 lv_draw_mask_radius_init(&mask_rout_param, &bg_coords, rout, false); in draw_bg()
238 for(h = 0; h < rout; h++) { in draw_bg()
278 center_coords.y1 = bg_coords.y1 + rout; in draw_bg()
279 center_coords.y2 = bg_coords.y2 - rout; in draw_bg()
282 blend_area.y1 = bg_coords.y1 + rout; in draw_bg()
283 blend_area.y2 = bg_coords.y2 - rout; in draw_bg()
292 int32_t h_end = bg_coords.y2 - rout; in draw_bg()
293 for(h = bg_coords.y1 + rout; h <= h_end; h++) { in draw_bg()
407 int32_t rout = dsc->radius; in draw_border() local
409 if(rout > short_side >> 1) rout = short_side >> 1; in draw_border()
414 …1 += ((dsc->border_side & LV_BORDER_SIDE_LEFT) ? dsc->border_width : - (dsc->border_width + rout)); in draw_border()
415 … -= ((dsc->border_side & LV_BORDER_SIDE_RIGHT) ? dsc->border_width : - (dsc->border_width + rout)); in draw_border()
416 …y1 += ((dsc->border_side & LV_BORDER_SIDE_TOP) ? dsc->border_width : - (dsc->border_width + rout)); in draw_border()
417 …-= ((dsc->border_side & LV_BORDER_SIDE_BOTTOM) ? dsc->border_width : - (dsc->border_width + rout)); in draw_border()
419 lv_coord_t rin = rout - dsc->border_width; in draw_border()
422 …draw_border_generic(draw_ctx, coords, &area_inner, rout, rin, dsc->border_color, dsc->border_opa, … in draw_border()
1140 lv_coord_t rout = rin + dsc->outline_width; in draw_outline() local
1142 …draw_border_generic(draw_ctx, &area_outer, &area_inner, rout, rin, dsc->outline_color, dsc->outlin… in draw_outline()
1147 … lv_coord_t rout, lv_coord_t rin, lv_color_t color, lv_opa_t opa, lv_blend_mode_t blend_mode) in draw_border_generic() argument
1155 if(!mask_any && rout == 0 && rin == 0) { in draw_border_generic()
1173 if(rout > 0) { in draw_border_generic()
1174 lv_draw_mask_radius_init(&mask_rout_param, outer_area, rout, false); in draw_border_generic()
1193 core_area.x1 = LV_MAX(outer_area->x1 + rout, inner_area->x1); in draw_border_generic()
1194 core_area.x2 = LV_MIN(outer_area->x2 - rout, inner_area->x2); in draw_border_generic()
1195 core_area.y1 = LV_MAX(outer_area->y1 + rout, inner_area->y1); in draw_border_generic()
1196 core_area.y2 = LV_MIN(outer_area->y2 - rout, inner_area->y2); in draw_border_generic()
1280 lv_coord_t max_h = LV_MAX(rout, inner_area->y1 - outer_area->y1); in draw_border_generic()
1369 LV_UNUSED(rout); in draw_border_generic()