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 */
117 max_len = max(info->var.green.length, info->var.red.length); in mono_col()
118 max_len = max(info->var.blue.length, max_len); in mono_col()
129 *---------------------------------------------
152 * appropriate flags in fb_info->flags. For example,
158 * (hw-accelerated copyarea() and fillrect())
159 * + use hardware-supported panning on a large virtual screen
164 * + re-render the text to the screen
181 return fb->scrollmode; in fb_scrollmode()
201 int rows = p->vrows; in real_y()
203 ypos += p->yscroll; in real_y()
204 return ypos < rows ? ypos : ypos - rows; in real_y()
212 if (fb_get_color_depth(&info->var, &info->fix) == 1) { in get_attribute()