/external/skia/include/core/ |
D | SkPixelRef.h | 52 SkColorTable* colorTable() const { return fRec.fColorTable; } in colorTable() 61 LockRec() : fPixels(NULL), fColorTable(NULL) {} in LockRec() 64 SkColorTable* fColorTable; member 70 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes; in isZero()
|
D | SkBitmap.h | 483 (this->colorType() != kIndex_8_SkColorType || fColorTable); in readyToDraw() 491 SkColorTable* getColorTable() const { return fColorTable; } in getColorTable() 763 mutable SkColorTable* fColorTable; // only meaningful for kIndex8 variable 846 SkASSERT(fColorTable); in getIndex8Color() 847 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)]; in getIndex8Color()
|
/external/skia/src/core/ |
D | SkPixelRef.cpp | 108 fRec.fColorTable = ctable; in setPreLocked() 127 validate_pixels_ctable(fInfo, fRec.fColorTable); in lockPixelsInsideMutex() 157 validate_pixels_ctable(fInfo, fRec.fColorTable); in lockPixels() 203 result->fCTable = fRec.fColorTable; in requestLock() 332 result->fCTable = fRec.fColorTable; in onRequestLock()
|
D | SkBitmap.cpp | 38 , fColorTable (nullptr) in SkBitmap() 48 , fColorTable (nullptr) in SkBitmap() 63 , fColorTable (other.fColorTable) in SkBitmap() 72 other.fColorTable = nullptr; in SkBitmap() 87 SkASSERT(!fColorTable); in operator =() 103 SkASSERT(!fColorTable); in operator =() 109 fColorTable = other.fColorTable; in operator =() 117 other.fColorTable = nullptr; in operator =() 209 fColorTable = fPixelRef->colorTable(); in updatePixelsFromRef() 213 fColorTable = nullptr; in updatePixelsFromRef() [all …]
|
D | SkLinearBitmapPipeline_sample.h | 145 fColorTable = (Sk4f*)SkAlign16((intptr_t)fColorTableStorage.get()); in PixelConverter() 147 fColorTable[i] = pmcolor_to_rgba<gammaType>((*skColorTable)[i]); in PixelConverter() 153 fColorTable = (Sk4f*)SkAlign16((intptr_t)fColorTableStorage.get()); 155 fColorTable[i] = strategy.fColorTable[i]; 160 return fColorTable[index]; in toSk4f() 167 Sk4f* fColorTable; variable
|
D | SkMallocPixelRef.cpp | 203 rec->fColorTable = fCTable; in onNewLockPixels()
|
D | SkResourceCache.cpp | 153 rec->fColorTable = fCTable; in onNewLockPixels()
|
/external/skia/src/codec/ |
D | SkBmpStandardCodec.cpp | 23 , fColorTable(nullptr) in SkBmpStandardCodec() 137 fColorTable.reset(new SkColorTable(colorTable, maxColors)); in createColorTable() 181 const SkPMColor* colorPtr = get_color_ptr(fColorTable.get()); in initializeSwizzler() 218 copy_color_table(dstInfo, fColorTable.get(), inputColorPtr, inputColorCount); in onPrepareToDecode() 357 const SkPMColor* colorPtr = get_color_ptr(fColorTable.get()); in onGetFillValue()
|
D | SkBmpRLECodec.cpp | 22 , fColorTable(nullptr) in SkBmpRLECodec() 109 fColorTable.reset(new SkColorTable(colorTable, maxColors)); in createColorTable() 188 dstRow[dstX] = fColorTable->operator[](index); in setPixel() 193 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index)); in setPixel() 271 copy_color_table(dstInfo, fColorTable.get(), inputColorPtr, inputColorCount); in onPrepareToDecode()
|
D | SkWbmpCodec.cpp | 113 , fColorTable(nullptr) in SkWbmpCodec() 209 fColorTable.reset(new SkColorTable(inputColorTable, 2)); in onStartScanlineDecode() 213 fSwizzler.reset(this->initializeSwizzler(dstInfo, get_color_ptr(fColorTable.get()), options)); in onStartScanlineDecode()
|
D | SkCodecImageGenerator.h | 41 sk_sp<SkColorTable> fColorTable; variable
|
D | SkWbmpCodec.h | 53 sk_sp<SkColorTable> fColorTable; variable
|
D | SkBmpStandardCodec.h | 89 sk_sp<SkColorTable> fColorTable; variable
|
D | SkSwizzler.h | 124 const SkPMColor* fColorTable; // Unowned pointer variable
|
D | SkBmpRLECodec.h | 97 sk_sp<SkColorTable> fColorTable; variable
|
D | SkPngCodec.h | 85 sk_sp<SkColorTable> fColorTable; // May be unpremul. variable
|
D | SkPngCodec.cpp | 323 fColorTable.reset(new SkColorTable(colorTable, maxColors)); in createColorTable() 1033 copy_color_table(dstInfo, fColorTable.get(), ctable, ctableCount); in initializeXforms() 1079 const SkPMColor* colors = get_color_ptr(fColorTable.get()); in initializeSwizzler() 1164 const SkPMColor* colorPtr = get_color_ptr(fColorTable.get()); in onGetFillValue()
|
D | SkSwizzler.cpp | 1230 , fColorTable(ctable) in SkSwizzler() 1268 fSampleX * fSrcBPP, fSrcOffsetUnits, fColorTable); in swizzle()
|