Lines Matching refs:r_txt
562 struct drm_rect r_txt = DRM_RECT_INIT(0, yoffset, sb->width, sb->height); in draw_line_with_wrap() local
568 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
569 r_txt.y1 -= font->height; in draw_line_with_wrap()
570 if (r_txt.y1 < 0) in draw_line_with_wrap()
571 return r_txt.y1; in draw_line_with_wrap()
575 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
576 r_txt.y1 -= font->height; in draw_line_with_wrap()
577 if (r_txt.y1 < 0) in draw_line_with_wrap()
578 return r_txt.y1; in draw_line_with_wrap()
581 draw_txt_rectangle(sb, font, line, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
582 r_txt.y1 -= font->height; in draw_line_with_wrap()
584 return r_txt.y1; in draw_line_with_wrap()