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

  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/
RGB565.java 39 public class RGB565 {
54 public static int RGB565_to_ARGB8(short rgb565){
56 int r = (rgb565 & 0xf800) >> 11;
57 int g = (rgb565 & 0x07e0) >> 5;
58 int b = (rgb565 & 0x001f);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 53 RGB565,
  /hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.h 71 RGB565 = 1,
  /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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 128 RGB565(16),
  /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...]
  /device/lge/mako/camera/
QCamera_Intf.h     [all...]

Completed in 283 milliseconds