OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RGB565
(Results
1 - 7
of
7
) 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);
/hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.h
73
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/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/
GraphicsContext3DNEON.h
286
uint8x8x2_t
RGB565
;
287
RGB565
.val[0] = vorr_u8(componentGRight, componentB);
288
RGB565
.val[1] = vorr_u8(componentR, componentGLeft);
289
vst2_u8(dst,
RGB565
);
/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
...]
/device/lge/mako/camera/
QCamera_Intf.h
[
all
...]
Completed in 433 milliseconds