Searched defs:RGB32 (Results 1 - 1 of 1) sorted by relevance

/external/qemu/android/camera/
H A Dcamera-format-converters.c61 * RGB32 color masks
87 /* Extract red, green, and blue bytes from RGB32 dword. */
93 /* Build RGB32 dword from red, green, and blue bytes. */
94 #define RGB32(r, g, b) (uint32_t)(((((uint32_t)(b) << 8) | (g)) << 8) | (r)) macro
104 /* Extract red, green, and blue bytes from RGB32 dword. */
110 /* Build RGB32 dword from red, green, and blue bytes. */
111 #define RGB32(r, g, b) (uint32_t)(((((uint32_t)(r) << 8) | (g)) << 8) | (b)) macro
175 /* Converts RGB32 color to YUV. */
221 /* Converts YUV color to RGB32. */
234 /* Converts YUV color to separated RGB32 color
[all...]

Completed in 1137 milliseconds