Lines Matching defs:rect
273 * void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
2415 static void atafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
2421 if (!rect->width || !rect->height)
2426 cfb_fillrect(info, rect);
2435 x2 = rect->dx + rect->width;
2436 y2 = rect->dy + rect->height;
2439 width = x2 - rect->dx;
2440 height = y2 - rect->dy;
2443 atafb_mfb_fillrect(info, par->next_line, rect->color,
2444 rect->dy, rect->dx, height, width);
2446 atafb_iplan2p2_fillrect(info, par->next_line, rect->color,
2447 rect->dy, rect->dx, height, width);
2449 atafb_iplan2p4_fillrect(info, par->next_line, rect->color,
2450 rect->dy, rect->dx, height, width);
2452 atafb_iplan2p8_fillrect(info, par->next_line, rect->color,
2453 rect->dy, rect->dx, height, width);