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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 53 RGB565,
  /development/tools/emulator/system/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...]
  /external/qemu/android/camera/
camera-format-converters.c 47 * RGB565 color masks
79 /* Extract red, green, and blue bytes from RGB565 word. */
83 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
91 /* Build RGB565 word from red, green, and blue bytes. */
92 #define RGB565(r, g, b) (uint16_t)(((((uint16_t)(b) << 6) | (g)) << 5) | (r))
96 /* Extract red, green, and blue bytes from RGB565 word. */
100 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
108 /* Build RGB565 word from red, green, and blue bytes. */
109 #define RGB565(r, g, b) (uint16_t)(((((uint16_t)(r) << 6) | (g)) << 5) | (b))
168 /* Converts RGB565 color to YUV. *
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 379 RGB565 = 0x8D62,
    [all...]

Completed in 490 milliseconds