Home
last modified time | relevance | path

Searched refs:alphaBit (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/images/
DSkImageDecoder_libico.cpp344 int alphaBit; in editPixelBit1() local
355 alphaBit = (alphaByte & m) >> shift; in editPixelBit1()
356 *address = (alphaBit-1)&(colors[colorBit]); in editPixelBit1()
372 int alphaBit = (alphaByte & m) >> shift; in editPixelBit4() local
373 *address = (alphaBit-1)&(colors[pixel]); in editPixelBit4()
380 alphaBit = (alphaByte & m) >> (shift-1); in editPixelBit4()
382 *address = (alphaBit-1)&(colors[pixel]); in editPixelBit4()
391 int alphaBit = (alphaByte & m) >> shift; in editPixelBit8() local
392 *address = (alphaBit-1)&(colors[pixel]); in editPixelBit8()
403 int alphaBit = (alphaByte & m) >> shift; in editPixelBit24() local
[all …]
/external/skia/src/codec/
DSkBmpStandardCodec.cpp315 uint32_t alphaBit = (fSrcBuffer.get()[quotient] >> shift) & 0x1; in decodeIcoMask() local
316 dstRow[dstX] &= alphaBit - 1; in decodeIcoMask()