Home
last modified time | relevance | path

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

/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp245 int colorInt; in find_next_tag() local
246 if (sscanf(number, "%x", &colorInt) == 1) { in find_next_tag()
247 state->color.red = (colorInt & 0xff0000) >> 16; in find_next_tag()
248 state->color.green = (colorInt & 0x00ff00) >> 8; in find_next_tag()
249 state->color.blue = (colorInt & 0x0000ff); in find_next_tag()