HomeSort by relevance Sort by last modified time
    Searched refs:fColorTable (Results 1 - 4 of 4) sorted by null

  /external/skia/src/core/
SkPixelRef.cpp 25 fColorTable = NULL; // we do not track ownership of this
37 fColorTable = NULL; // we do not track ownership of this
51 fPixels = this->onLockPixels(&fColorTable);
62 fColorTable = NULL;
SkBitmap.cpp 122 SkSafeRef(fColorTable); // ref the user's ctable if present
126 fColorTable = NULL;
141 SkTSwap(fColorTable, other.fColorTable);
301 SkRefCnt_SafeAssign(fColorTable, fPixelRef->colorTable());
305 if (fColorTable) {
306 fColorTable->unref();
307 fColorTable = NULL;
356 SkRefCnt_SafeAssign(fColorTable, ctable);
374 if (fColorTable) {
    [all...]
  /external/skia/include/core/
SkPixelRef.h 52 SkColorTable* colorTable() const { return fColorTable; }
182 SkColorTable* fColorTable; // we do not track ownership, subclass does
SkBitmap.h 327 fColorTable != NULL);
337 SkColorTable* getColorTable() const { return fColorTable; }
576 mutable SkColorTable* fColorTable; // only meaningful for kIndex8
794 SkASSERT(fColorTable);
795 return (*fColorTable)[*((const uint8_t*)fPixels + y * fRowBytes + x)];

Completed in 172 milliseconds