Lines Matching defs:rect
203 static void arkfb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
205 u32 fg = expand_color(rect->color);
210 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
211 + ((rect->dx / 8) * 4);
213 for (y = 0; y < rect->height; y++) {
215 for (x = 0; x < rect->width; x += 8) {
272 static void arkfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
275 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
277 arkfb_iplan_fillrect(info, rect);
279 cfb_fillrect(info, rect);