HomeSort by relevance Sort by last modified time
    Searched refs:agrb (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/tests/
ColorPrivTest.cpp 16 const uint64_t agrb = SkSplay(color); local
17 ASSERT(agrb == 0x00A100C300B200D4ULL);
18 ASSERT(SkUnsplay(agrb<<8) == color);
  /external/skia/tests/
ColorPrivTest.cpp 16 const uint64_t agrb = SkSplay(color); local
17 ASSERT(agrb == 0x00A100C300B200D4ULL);
18 ASSERT(SkUnsplay(agrb<<8) == color);
  /external/chromium_org/third_party/skia/include/core/
SkColorPriv.h 426 * (note, ARGB -> AGRB)
430 uint64_t agrb = (color >> 8) & mask; // 0x0000000000AA00GG local
431 agrb <<= 32; // 0x00AA00GG00000000
432 agrb |= color & mask; // 0x00AA00GG00RR00BB
433 return agrb;
446 * (note, AGRB -> ARGB)
448 static inline uint32_t SkUnsplay(uint64_t agrb) {
451 ((agrb & mask) >> 8) | // 0x00RR00BB
452 ((agrb >> 32) & mask)); // 0xAARRGGBB
    [all...]
  /external/skia/include/core/
SkColorPriv.h 427 * (note, ARGB -> AGRB)
431 uint64_t agrb = (color >> 8) & mask; // 0x0000000000AA00GG local
432 agrb <<= 32; // 0x00AA00GG00000000
433 agrb |= color & mask; // 0x00AA00GG00RR00BB
434 return agrb;
447 * (note, AGRB -> ARGB)
449 static inline uint32_t SkUnsplay(uint64_t agrb) {
452 ((agrb & mask) >> 8) | // 0x00RR00BB
453 ((agrb >> 32) & mask)); // 0xAARRGGBB
    [all...]

Completed in 688 milliseconds