HomeSort by relevance Sort by last modified time
    Searched refs:rgb32 (Results 1 - 2 of 2) sorted by null

  /external/libdrm/tests/util/
pattern.c 624 uint32_t rgb32 = 0x00130502 * (d.quot >> 6) local
627 MAKE_YUV_601((rgb32 >> 16) & 0xff,
628 (rgb32 >> 8) & 0xff, rgb32 & 0xff);
658 uint32_t rgb32 = 0x00130502 * (d.quot >> 6) local
661 MAKE_YUV_601((rgb32 >> 16) & 0xff,
662 (rgb32 >> 8) & 0xff, rgb32 & 0xff);
686 uint32_t rgb32 = 0x00130502 * (d.quot >> 6) local
689 MAKE_RGBA(rgb, (rgb32 >> 16) & 0xff
711 uint32_t rgb32 = 0x00130502 * (d.quot >> 6) local
734 uint32_t rgb32 = 0x00130502 * (d.quot >> 6) local
    [all...]
  /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...]

Completed in 208 milliseconds