Lines Matching +full:render +full:- +full:max
2 * linux/drivers/video/console/fbcon.h -- Low level frame buffer based console driver
22 * This is the interface between the low-level console driver and the
23 * low-level frame buffer device
27 /* Filled in by the low-level console driver */
114 max_len = max(info->var.green.length, info->var.red.length); in mono_col()
115 max_len = max(info->var.blue.length, max_len); in mono_col()
126 *---------------------------------------------
149 * appropriate flags in fb_info->flags. For example,
155 * (hw-accelerated copyarea() and fillrect())
156 * + use hardware-supported panning on a large virtual screen
161 * + re-render the text to the screen
178 return fb->scrollmode; in fb_scrollmode()
198 int rows = p->vrows; in real_y()
200 ypos += p->yscroll; in real_y()
201 return ypos < rows ? ypos : ypos - rows; in real_y()
209 if (fb_get_color_depth(&info->var, &info->fix) == 1) { in get_attribute()