Lines Matching refs:r_txt
357 struct drm_rect r_txt = DRM_RECT_INIT(0, yoffset, sb->width, sb->height); in draw_line_with_wrap() local
363 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
364 r_txt.y1 -= font->height; in draw_line_with_wrap()
365 if (r_txt.y1 < 0) in draw_line_with_wrap()
366 return r_txt.y1; in draw_line_with_wrap()
370 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
371 r_txt.y1 -= font->height; in draw_line_with_wrap()
372 if (r_txt.y1 < 0) in draw_line_with_wrap()
373 return r_txt.y1; in draw_line_with_wrap()
376 draw_txt_rectangle(sb, font, line, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
377 r_txt.y1 -= font->height; in draw_line_with_wrap()
379 return r_txt.y1; in draw_line_with_wrap()