OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:agrb
(Results
1 - 4
of
4
) sorted by null
/external/skia/tests/
ColorPrivTest.cpp
23
const uint64_t
agrb
= SkSplay(color);
local
24
ASSERT(
agrb
== 0x00A100C300B200D4ULL);
25
ASSERT(SkUnsplay(
agrb
<<8) == color);
/external/skqp/tests/
ColorPrivTest.cpp
23
const uint64_t
agrb
= SkSplay(color);
local
24
ASSERT(
agrb
== 0x00A100C300B200D4ULL);
25
ASSERT(SkUnsplay(
agrb
<<8) == color);
/external/skia/src/core/
SkColorData.h
383
* (note, ARGB ->
AGRB
)
387
uint64_t
agrb
= (color >> 8) & mask; // 0x0000000000AA00GG
local
388
agrb
<<= 32; // 0x00AA00GG00000000
389
agrb
|= color & mask; // 0x00AA00GG00RR00BB
390
return
agrb
;
403
* (note,
AGRB
-> ARGB)
405
static inline uint32_t SkUnsplay(uint64_t
agrb
) {
408
((
agrb
& mask) >> 8) | // 0x00RR00BB
409
((
agrb
>> 32) & mask)); // 0xAARRGGBB
[
all
...]
/external/skqp/src/core/
SkColorData.h
383
* (note, ARGB ->
AGRB
)
387
uint64_t
agrb
= (color >> 8) & mask; // 0x0000000000AA00GG
local
388
agrb
<<= 32; // 0x00AA00GG00000000
389
agrb
|= color & mask; // 0x00AA00GG00RR00BB
390
return
agrb
;
403
* (note,
AGRB
-> ARGB)
405
static inline uint32_t SkUnsplay(uint64_t
agrb
) {
408
((
agrb
& mask) >> 8) | // 0x00RR00BB
409
((
agrb
>> 32) & mask)); // 0xAARRGGBB
[
all
...]
Completed in 325 milliseconds