Lines Matching refs:RGB32
61 * RGB32 color masks
89 /* Extract red, green, and blue bytes from RGB32 dword. */
95 /* Build RGB32 dword from red, green, and blue bytes. */
96 #define RGB32(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(b) << 8) | g) << 8) | r)
106 /* Extract red, green, and blue bytes from RGB32 dword. */
112 /* Build RGB32 dword from red, green, and blue bytes. */
113 #define RGB32(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(r) << 8) | g) << 8) | b)
167 /* Converts RGB32 color to YUV. */
216 /* Converts YUV color to RGB32. */
245 inline explicit YUVPixel(uint32_t rgb32)
247 RGB32ToYUV(rgb32, &Y, &U, &V);
264 /* Converts an YV12 framebuffer to RGB32 framebuffer.
267 * rgb - RGB32 framebuffer.
272 /* Converts an YU12 framebuffer to RGB32 framebuffer.
275 * rgb - RGB32 framebuffer.
288 /* Converts an NV12 framebuffer to RGB32 framebuffer.
291 * rgb - RGB32 framebuffer.
304 /* Converts an NV21 framebuffer to RGB32 framebuffer.
307 * rgb - RGB32 framebuffer.