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

  /device/generic/goldfish/camera/
Converters.h 45 * RGB565 color masks
81 /* Extract red, green, and blue bytes from RGB565 word. */
85 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
93 /* Build RGB565 word from red, green, and blue bytes. */
94 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(b) << 6) | g) << 5) | r)
98 /* Extract red, green, and blue bytes from RGB565 word. */
102 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
110 /* Build RGB565 word from red, green, and blue bytes. */
111 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(r) << 6) | g) << 5) | b)
160 /* Converts RGB565 color to YUV. *
    [all...]
  /hardware/qcom/media/msm8974/libc2dcolorconvert/
C2DColorConverter.h 72 RGB565 = 1,
  /hardware/qcom/media/msm8996/libc2dcolorconvert/
C2DColorConverter.h 75 RGB565 = 1,
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCamera_Intf.h 1093 RGB565 = 8,
    [all...]

Completed in 2550 milliseconds