
Originally Posted by
tivomaster
Is the future newtext2osd going to support the normal S1 style color codes?
Mine doesn't, but alldeadhomiez's does. They wouldn't be very difficult to add; it's just that the most transparent way seems somewhat inelegant:
Code:
#ifdef __TIVO_S2__
if (colour < 0x100) colour = s1_to_s2_colours_table[colour];
#endif /* __TIVO_S2__ */
Ah, that's not so bad. Look for it in 0.3.
I see where you say:
"Series2 colours are 32-bit unsigned quantities of the form 0xAARRGGBB"
I take it the RRGGBB are Red,Green,and Blue but what is the AA?
opAAcity :-)
Okay, so it's `alpha', but `opacity' keeps me from confusing it with transparency. AA runs from 0x00 (for totally transparent) to 0xff (for totally opaque).