Lines Matching defs:rect
204 static void arkfb_iplan_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
206 u32 fg = expand_color(rect->color);
211 dst1 = info->screen_base + (rect->dy * info->fix.line_length)
212 + ((rect->dx / 8) * 4);
214 for (y = 0; y < rect->height; y++) {
216 for (x = 0; x < rect->width; x += 8) {
273 static void arkfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
276 && ((rect->width % 8) == 0) && ((rect->dx % 8) == 0)
278 arkfb_iplan_fillrect(info, rect);
280 cfb_fillrect(info, rect);