Lines Matching refs:bgcolor
112 void *dst1, u32 fgcolor, u32 bgcolor, in slow_imageblit() argument
125 bgcolor <<= FB_LEFT_POS(p, bpp); in slow_imageblit()
144 color = (*s & (1 << l)) ? fgcolor : bgcolor; in slow_imageblit()
187 void *dst1, u32 fgcolor, u32 bgcolor) in fast_imageblit() argument
189 u32 fgx = fgcolor, bgx = bgcolor, bpp = p->var.bits_per_pixel; in fast_imageblit()
214 bgx |= bgcolor; in fast_imageblit()
242 u32 fgcolor, bgcolor, start_index, bitstart, pitch_index = 0; in sys_imageblit() local
266 bgcolor = ((u32*)(p->pseudo_palette))[image->bg_color]; in sys_imageblit()
269 bgcolor = image->bg_color; in sys_imageblit()
275 fast_imageblit(image, p, dst1, fgcolor, bgcolor); in sys_imageblit()
277 slow_imageblit(image, p, dst1, fgcolor, bgcolor, in sys_imageblit()