Searched defs:fPixels (Results 1 - 3 of 3) sorted by relevance

/external/skia/include/core/
H A DSkPixelRef.h43 void* pixels() const { return fPixels; }
146 void* fPixels; member in class:SkPixelRef
H A DSkBitmap.h85 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; }
124 void* getPixels() const { return fPixels; }
461 mutable void* fPixels; member in class:SkBitmap
641 SkASSERT(fPixels);
644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
648 SkASSERT(fPixels);
651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
655 SkASSERT(fPixels);
658 return (uint8_t*)fPixels + y * fRowBytes + x;
662 SkASSERT(fPixels);
[all...]
/external/skia/src/core/
H A DSkBitmap.cpp34 void* fPixels; member in struct:MipLevel
118 // leave fPixels as it is
122 fPixels = NULL;
137 SkTSwap<void*>(fPixels, other.fPixels);
266 fPixels = p;
270 fPixels = NULL;
321 fPixels = p;
354 fPixels = NULL;
559 uint8_t* p = (uint8_t*)fPixels;
[all...]

Completed in 413 milliseconds