HomeSort by relevance Sort by last modified time
    Searched defs:RGB32 (Results 1 - 3 of 3) sorted by null

  /device/generic/goldfish/camera/
Converters.h 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)
    [all...]
  /external/chromium_org/media/base/
video_frame.h 44 RGB32 = 4, // 32bpp RGB packed with extra byte 8:8:8
  /external/qemu/android/camera/
camera-format-converters.c 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. *
    [all...]

Completed in 247 milliseconds