HomeSort by relevance Sort by last modified time
    Searched refs:RGB565 (Results 1 - 24 of 24) 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,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderDDS.java 8 import jme3tools.converters.RGB565;
58 int col0 = RGB565.RGB565_to_ARGB8(data.getShort());
59 int col1 = RGB565.RGB565_to_ARGB8(data.getShort());
79 short rgb565 = RGB565.ARGB8_to_RGB565(argb8); local
80 newData.putShort(dataIndex, rgb565);
TextureBlenderFactory.java 46 case RGB565:
TextureBlenderAWT.java 31 * <li> RGB565:
141 case RGB565:
  /external/chromium/webkit/glue/
webvideoframe_impl.cc 36 COMPILE_ASSERT_MATCHING_ENUM(FormatRGB565, RGB565);
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 78 format = Image.Format.RGB565;
  /hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.h 71 RGB565 = 1,
C2DColorConverter.cpp 277 case RGB565:
376 case RGB565:
398 case RGB565:
399 return ALIGN(width, ALIGN32) * 2; // RGB565 has width as twice
445 case RGB565:
645 if (mDstFormat == RGB565) {
  /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/android/com/jme3/renderer/android/
TextureUtil.java 30 case RGB565:
171 case RGB565:
  /external/libyuv/files/unit_test/
planar_test.cc 93 TESTPLANARTOB(I420, 2, 2, RGB565, 2)
165 TESTBIPLANARTOB(NV12, 2, 2, RGB565, 2)
166 TESTBIPLANARTOB(NV21, 2, 2, RGB565, 2)
251 TESTATOPLANAR(RGB565, 2, I420, 2, 2)
315 TESTATOB(ARGB, 4, 4, RGB565, 2)
323 TESTATOB(RGB565, 2, 2, ARGB, 4)
373 TESTATOBRANDOM(ARGB, 4, 4, RGB565, 2)
382 TESTATOBRANDOM(RGB565, 2, 2, ARGB, 4)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLFramebuffer.cpp 205 case GraphicsContext3D::RGB565:
WebGLRenderingContext.idl 406 const unsigned int RGB565 = 0x8D62;
    [all...]
WebGLRenderingContext.cpp     [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/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 128 RGB565(16),
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
ImageToAwt.java 167 params.put(Format.RGB565, new DecodeParams(2, 0, m5__ , m_6_ , m__5,
  /external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp 341 COMPILE_ASSERT_MATCHING_ENUM(WebVideoFrame::FormatRGB565, VideoFrameChromium::RGB565);
  /hardware/samsung_slsi/exynos5/libswconverter/
csc_ARGB8888_to_YUV420SP_NEON.s 18 @r9 temp4, Raw RGB565
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 379 RGB565 = 0x8D62,
    [all...]
  /device/lge/mako/camera/
QCamera_Intf.h     [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 890 case RGB565:
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]

Completed in 1142 milliseconds