RGB888 to RGB565 Define
#define _MODE_555_RGB16BIT(r,g,b) ((b%32) + ((g%32) << 5) + ((r%32) << 10)) //convert 24->16bits #define _MODE_565_RGB16BIT(r,g,b) ((b%32) + ((g%64) << 6) + ((r%32) << 11)) //convert 24->16bits #define _RGB16BIT(r,g,b) ((b%32) + ((g%32) << 5) + ((r%32) << 10)) //builds 16bit color |
'Programming & Tools > TMS320DM368' 카테고리의 다른 글
[DM368] OM - Memory_contigFree> Error: buffer (addr=1258430464, size=48) not found in translation cache (0) | 2012.06.23 |
---|---|
[DM368] U-Boot 의 bootargs Parameter 항목을 Kernel에서 사용하기 (0) | 2012.06.12 |
[DM368] OSD 에 Color Key 를 이용하여 Tranparency 설정하기. (0) | 2012.05.31 |
[DM368] Linux Logo 변경 후 커서 깜빡임 제거 (0) | 2012.05.24 |
[DM368] LCD 화면에 TTY Login 안보이게 하는 방법 (0) | 2012.05.24 |