OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RGB32
(Results
1 - 2
of
2
) sorted by null
/device/generic/goldfish/camera/
Converters.h
61
*
RGB32
color masks
89
/* Extract red, green, and blue bytes from
RGB32
dword. */
95
/* Build
RGB32
dword from red, green, and blue bytes. */
96
#define
RGB32
(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(b) << 8) | g) << 8) | r)
106
/* Extract red, green, and blue bytes from
RGB32
dword. */
112
/* Build
RGB32
dword from red, green, and blue bytes. */
113
#define
RGB32
(r, g, b) static_cast<uint32_t>((((static_cast<uint32_t>(r) << 8) | g) << 8) | b)
167
/* Converts
RGB32
color to YUV. */
216
/* Converts YUV color to
RGB32
. */
245
inline explicit YUVPixel(uint32_t
rgb32
)
[
all
...]
/external/qemu/android/camera/
camera-format-converters.c
61
*
RGB32
color masks
87
/* Extract red, green, and blue bytes from
RGB32
dword. */
93
/* Build
RGB32
dword from red, green, and blue bytes. */
94
#define
RGB32
(r, g, b) (uint32_t)(((((uint32_t)(b) << 8) | (g)) << 8) | (r))
104
/* Extract red, green, and blue bytes from
RGB32
dword. */
110
/* Build
RGB32
dword from red, green, and blue bytes. */
111
#define
RGB32
(r, g, b) (uint32_t)(((((uint32_t)(r) << 8) | (g)) << 8) | (b))
175
/* Converts
RGB32
color to YUV. */
221
/* Converts YUV color to
RGB32
. */
234
/* Converts YUV color to separated
RGB32
colors. *
[
all
...]
Completed in 95 milliseconds