Home
last modified time | relevance | path

Searched refs:fSrcRowBytes (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/codec/
DSkWbmpCodec.cpp104 return this->stream()->read(row, fSrcRowBytes) == fSrcRowBytes; in readRow()
109 , fSrcRowBytes(get_src_row_bytes(this->getInfo().width())) in SkWbmpCodec()
144 SkAutoTMalloc<uint8_t> src(fSrcRowBytes); in onGetPixels()
187 const size_t bytesToSkip = count * fSrcRowBytes; in onSkipScanlines()
215 fSrcBuffer.reset(fSrcRowBytes); in onStartScanlineDecode()
DSkBmpCodec.h84 size_t srcRowBytes() const { return fSrcRowBytes; } in srcRowBytes()
142 const size_t fSrcRowBytes; variable
DSkPngCodec.cpp632 fSrcRowBytes = this->getInfo().width() * SkSwizzler::BytesPerPixel(this->srcConfig()); in onStartScanlineDecode()
633 fGarbageRow.reset(fSrcRowBytes); in onStartScanlineDecode()
670 SkAutoTMalloc<uint8_t> storage(count * fSrcRowBytes); in onGetScanlines()
683 srcRow += fSrcRowBytes; in onGetScanlines()
696 srcRow += fSrcRowBytes; in onGetScanlines()
713 size_t fSrcRowBytes; member in SkPngInterlacedScanlineDecoder
DSkWbmpCodec.h48 const size_t fSrcRowBytes; variable
DSkBmpCodec.cpp555 , fSrcRowBytes(SkAlign4(compute_row_bytes(info.width(), fBitsPerPixel))) in SkBmpCodec()
589 const size_t bytesToSkip = count * fSrcRowBytes; in skipRows()