Lines Matching defs:rect
285 * void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
2476 static void atafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
2482 if (!rect->width || !rect->height)
2487 cfb_fillrect(info, rect);
2496 x2 = rect->dx + rect->width;
2497 y2 = rect->dy + rect->height;
2500 width = x2 - rect->dx;
2501 height = y2 - rect->dy;
2504 atafb_mfb_fillrect(info, par->next_line, rect->color,
2505 rect->dy, rect->dx, height, width);
2507 atafb_iplan2p2_fillrect(info, par->next_line, rect->color,
2508 rect->dy, rect->dx, height, width);
2510 atafb_iplan2p4_fillrect(info, par->next_line, rect->color,
2511 rect->dy, rect->dx, height, width);
2513 atafb_iplan2p8_fillrect(info, par->next_line, rect->color,
2514 rect->dy, rect->dx, height, width);