Home
last modified time | relevance | path

Searched refs:fPixels (Results 1 – 5 of 5) sorted by relevance

/external/skia/include/core/
DSkBitmap.h85 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; } in isNull()
124 void* getPixels() const { return fPixels; } in getPixels()
461 mutable void* fPixels; variable
641 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 …]
DSkPixelRef.h43 void* pixels() const { return fPixels; } in pixels()
146 void* fPixels; variable
/external/skia/src/core/
DSkPixelRef.cpp13 fPixels = NULL; in SkPixelRef()
25 fPixels = NULL; in SkPixelRef()
40 fPixels = this->onLockPixels(&fColorTable); in lockPixels()
50 fPixels = NULL; in unlockPixels()
DSkBitmap.cpp34 void* fPixels; member
122 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 …]
/external/skia/src/utils/mac/
DSkBitmap_Mac.cpp107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) { in drawToPort()