| 996 | |
| 997 | |
| 998 | ILushort Color565ToShort(Color565 *Colour) |
| 999 | { |
| 1000 | return (Colour->nRed << 11) | (Colour->nGreen << 5) | (Colour->nBlue); |
| 1001 | } |
| 1002 | |
| 1003 | |
| 1004 | ILushort Color888ToShort(Color888 *Colour) |
nothing calls this directly
no outgoing calls
no test coverage detected