Lines Matching refs:r_txt
525 struct drm_rect r_txt = DRM_RECT_INIT(0, yoffset, sb->width, font->height); in draw_line_with_wrap() local
531 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
532 r_txt.y1 -= font->height; in draw_line_with_wrap()
533 if (r_txt.y1 < 0) in draw_line_with_wrap()
534 return r_txt.y1; in draw_line_with_wrap()
538 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
539 r_txt.y1 -= font->height; in draw_line_with_wrap()
540 if (r_txt.y1 < 0) in draw_line_with_wrap()
541 return r_txt.y1; in draw_line_with_wrap()
544 draw_txt_rectangle(sb, font, line, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
545 r_txt.y1 -= font->height; in draw_line_with_wrap()
547 return r_txt.y1; in draw_line_with_wrap()