Home
last modified time | relevance | path

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

/external/skia/src/codec/
DSkGifCodec.cpp124 , fCurrColorTable(nullptr) in SkGifCodec()
166 fCurrColorTable.reset(new SkColorTable(&color, 1)); in initializeColorTable()
177 fCurrColorTable.reset(new SkColorTable(dstColors, currColorTable->count())); in initializeColorTable()
179 fCurrColorTable = std::move(currColorTable); in initializeColorTable()
258 SkASSERT(fCurrColorTable); in prepareToDecode()
260 *inputColorCount = fCurrColorTable->count(); in prepareToDecode()
262 copy_color_table(dstInfo, fCurrColorTable.get(), inputColorPtr, inputColorCount); in prepareToDecode()
296 fCurrColorTable->readColors(), swizzlerInfo, Options(), &swizzleRect)); in initializeSwizzler()
492 if (transPixel < (size_t) fCurrColorTable->count()) { in onGetFillValue()
DSkGifCodec.h134 sk_sp<SkColorTable> fCurrColorTable; variable