Home
last modified time | relevance | path

Searched defs:RGB565 (Results 1 – 1 of 1) sorted by relevance

/development/tools/emulator/system/camera/
DConverters.h94 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(b) << 6) | g) << 5) | r) macro
111 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(r) << 6) | g) << 5) | b) macro