Home
last modified time | relevance | path

Searched refs:px (Results 1 – 1 of 1) sorted by relevance

/bootable/recovery/minui/
Dgraphics.cpp79 unsigned char* px = dst_p; in text_blend() local
84 *px++ = gr_current_r; in text_blend()
85 *px++ = gr_current_g; in text_blend()
86 *px++ = gr_current_b; in text_blend()
87 px++; in text_blend()
89 *px = (*px * (255-a) + gr_current_r * a) / 255; in text_blend()
90 ++px; in text_blend()
91 *px = (*px * (255-a) + gr_current_g * a) / 255; in text_blend()
92 ++px; in text_blend()
93 *px = (*px * (255-a) + gr_current_b * a) / 255; in text_blend()
[all …]