Lines Matching refs:top_y
239 lv_coord_t top_y = bg_coords.y1 + h; in draw_bg() local
241 …if(top_y < clipped_coords.y1 && bottom_y > clipped_coords.y2) continue; /*This line is clipped n… in draw_bg()
246 blend_dsc.mask_res = lv_draw_mask_apply(mask_buf, blend_area.x1, top_y, clipped_w); in draw_bg()
249 if(top_y >= clipped_coords.y1) { in draw_bg()
250 blend_area.y1 = top_y; in draw_bg()
251 blend_area.y2 = top_y; in draw_bg()
254 if(dither_func) dither_func(grad, blend_area.x1, top_y - bg_coords.y1, grad_size); in draw_bg()
256 if(grad_dir == LV_GRAD_DIR_VER) blend_dsc.color = grad->map[top_y - bg_coords.y1]; in draw_bg()
1282 lv_coord_t top_y = outer_area->y1 + h; in draw_border_generic() local
1284 … if(top_y < draw_area.y1 && bottom_y > draw_area.y2) continue; /*This line is clipped now*/ in draw_border_generic()
1287 … blend_dsc.mask_res = lv_draw_mask_apply(blend_dsc.mask_buf, blend_area.x1, top_y, draw_area_w); in draw_border_generic()
1289 if(top_y >= draw_area.y1) { in draw_border_generic()
1290 blend_area.y1 = top_y; in draw_border_generic()
1291 blend_area.y2 = top_y; in draw_border_generic()