Searched refs:fPixels (Results 1 – 5 of 5) sorted by relevance
85 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; } in isNull()124 void* getPixels() const { return fPixels; } in getPixels()461 mutable void* fPixels; variable641 SkASSERT(fPixels); in getAddr32()644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2)); in getAddr32()648 SkASSERT(fPixels); in getAddr16()651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1)); in getAddr16()655 SkASSERT(fPixels); in getAddr8()658 return (uint8_t*)fPixels + y * fRowBytes + x; in getAddr8()662 SkASSERT(fPixels); in getIndex8Color()[all …]
43 void* pixels() const { return fPixels; } in pixels()146 void* fPixels; variable
13 fPixels = NULL; in SkPixelRef()25 fPixels = NULL; in SkPixelRef()40 fPixels = this->onLockPixels(&fColorTable); in lockPixels()50 fPixels = NULL; in unlockPixels()
34 void* fPixels; member122 fPixels = NULL; in operator =()137 SkTSwap<void*>(fPixels, other.fPixels); in swap()266 fPixels = p; in updatePixelsFromRef()270 fPixels = NULL; in updatePixelsFromRef()321 fPixels = p; in setPixels()354 fPixels = NULL; in freePixels()559 uint8_t* p = (uint8_t*)fPixels; in eraseARGB()570 uint8_t* p = (uint8_t*)fPixels; in eraseARGB()579 uint16_t* p = (uint16_t*)fPixels; in eraseARGB()[all …]
107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) { in drawToPort()