Lines Matching defs:rect
170 static void vt8623fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
172 u32 fg = expand_color(rect->color);
177 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
178 + ((rect->dx / 8) * 4);
180 for (y = 0; y < rect->height; y++) {
182 for (x = 0; x < rect->width; x += 8) {
237 static void vt8623fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
240 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
242 vt8623fb_iplan_fillrect(info, rect);
244 cfb_fillrect(info, rect);