Home | History | Annotate | Download | only in camera

Lines Matching refs:RGB32

61  * 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))
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))
175 /* Converts RGB32 color to YUV. */
221 /* Converts YUV color to RGB32. */
234 /* Converts YUV color to separated RGB32 colors. */
541 /* Loads R, G, and B colors from a RGB32 framebuffer. */
550 /* Saves R, G, and B colors to a RGB32 framebuffer. */
1227 /* Describes RGB32 format. */