Lines Matching defs:rect
169 static void vt8623fb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
171 u32 fg = expand_color(rect->color);
176 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
177 + ((rect->dx / 8) * 4);
179 for (y = 0; y < rect->height; y++) {
181 for (x = 0; x < rect->width; x += 8) {
236 static void vt8623fb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
239 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
241 vt8623fb_iplan_fillrect(info, rect);
243 cfb_fillrect(info, rect);