Home
last modified time | relevance | path

Searched refs:fBytesPerColor (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/codec/
DSkBmpStandardCodec.cpp25 , fBytesPerColor(bytesPerColor) in SkBmpStandardCodec()
89 colorBytes = numColorsToRead * fBytesPerColor; in createColorTable()
107 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable()
108 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable()
109 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
114 alpha = get_byte(cBuffer.get(), i*fBytesPerColor + 3); in createColorTable()
DSkBmpRLECodec.cpp25 , fBytesPerColor(bytesPerColor) in SkBmpRLECodec()
91 colorBytes = numColorsToRead * fBytesPerColor; in createColorTable()
101 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable()
102 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable()
103 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
DSkBmpStandardCodec.h90 const uint32_t fBytesPerColor; variable
DSkBmpRLECodec.h100 const uint32_t fBytesPerColor; variable