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()
87 colorBytes = numColorsToRead * fBytesPerColor; in createColorTable()
108 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable()
109 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable()
110 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
115 alpha = get_byte(cBuffer.get(), i*fBytesPerColor + 3); in createColorTable()
DSkBmpRLECodec.cpp24 , fBytesPerColor(bytesPerColor) in SkBmpRLECodec()
84 colorBytes = numColorsToRead * fBytesPerColor; in createColorTable()
95 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor); in createColorTable()
96 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1); in createColorTable()
97 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2); in createColorTable()
DSkBmpStandardCodec.h92 const uint32_t fBytesPerColor; variable
DSkBmpRLECodec.h100 const uint32_t fBytesPerColor; variable