Lines Matching defs:pixel
419 uint8_t *pixel = sub_rect->data[0] + iy * sub_rect->linesize[0];
423 uint8_t *pixelnext = pixel + BITMAP_CHAR_WIDTH;
426 memset(pixel, VBI_TRANSPARENT_BLACK, BITMAP_CHAR_WIDTH);
434 for(; pixel < pixelnext; pixel++)
435 if (*pixel == vc->background)
436 *pixel += VBI_NB_COLORS;
440 for(; pixel < pixelnext; pixel++)
441 if (*pixel == vc->background)
442 *pixel = VBI_TRANSPARENT_BLACK;
445 pixel = pixelnext;