| 172 | } |
| 173 | |
| 174 | word ColorTo565( const uint8_t* color ) |
| 175 | { |
| 176 | // BGR |
| 177 | return ( ( color[2] >> 3 ) << 11 ) | ( ( color[1] >> 2 ) << 5 ) | ( color[0] >> 3 ); |
| 178 | } |
| 179 | |
| 180 | word NormalYTo565( uint8_t y ) |
| 181 | { |
no outgoing calls
no test coverage detected