Home
last modified time | relevance | path

Searched refs:line_wrap (Results 1 – 1 of 1) sorted by relevance

/linux-6.12.1/drivers/gpu/drm/
Ddrm_panic.c563 struct drm_panic_line line_wrap; in draw_line_with_wrap() local
566 line_wrap.len = line->len % chars_per_row; in draw_line_with_wrap()
567 line_wrap.txt = line->txt + line->len - line_wrap.len; in draw_line_with_wrap()
568 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()
572 while (line_wrap.txt > line->txt) { in draw_line_with_wrap()
573 line_wrap.txt -= chars_per_row; in draw_line_with_wrap()
574 line_wrap.len = chars_per_row; in draw_line_with_wrap()
575 draw_txt_rectangle(sb, font, &line_wrap, 1, false, &r_txt, fg_color); in draw_line_with_wrap()