Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkJpegCodec.cpp172 , fSrcRowBytes(0) in SkJpegCodec()
290 fSrcRowBytes = SkSwizzler::BytesPerPixel(srcConfig) * dstInfo.width(); in initializeSwizzler()
341 SkASSERT(0 != fSrcRowBytes); in onGetPixels()
342 SkAutoTDeleteArray<uint8_t> srcBuffer(SkNEW_ARRAY(uint8_t, fSrcRowBytes * rowsPerDecode)); in onGetPixels()
347 srcPtr += fSrcRowBytes; in onGetPixels()
399 fStorage.reset(fCodec->fSrcRowBytes); in SkJpegScanlineDecoder()
DSkJpegCodec.h116 size_t fSrcRowBytes; variable