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

/external/skia/src/gpu/
H A DGrSWMaskHelper.h65 fPixels.erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
91 SkAutoPixmapStorage fPixels; member in class:GrSWMaskHelper
/external/skia/include/core/
H A DSkRasterHandleAllocator.h48 void* fPixels; // pixels for this allocation member in struct:SkRasterHandleAllocator::Rec
H A DSkPixelRef.h48 void* pixels() const { return fRec.fPixels; }
61 LockRec() : fPixels(NULL), fColorTable(NULL) {}
63 void* fPixels; member in struct:SkPixelRef::LockRec
70 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
175 LockResult() : fPixels(NULL), fCTable(NULL) {}
180 const void* fPixels; member in struct:SkPixelRef::LockResult
H A DSkPixmap.h26 : fPixels(NULL), fCTable(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
31 : fPixels(addr), fCTable(ctable), fRowBytes(rowBytes), fInfo(info)
66 const void* addr() const { return fPixels; }
110 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
114 return reinterpret_cast<const uint8_t*>(fPixels);
118 return reinterpret_cast<const uint16_t*>(fPixels);
122 return reinterpret_cast<const uint32_t*>(fPixels);
126 return reinterpret_cast<const uint64_t*>(fPixels);
131 return reinterpret_cast<const uint16_t*>(fPixels);
163 void* writable_addr() const { return const_cast<void*>(fPixels); }
216 const void* fPixels; member in class:SkPixmap
[all...]
H A DSkBitmap.h144 void* getPixels() const { return fPixels; }
762 mutable void* fPixels; member in class:SkBitmap
822 SkASSERT(fPixels);
825 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
829 SkASSERT(fPixels);
832 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
836 SkASSERT(fPixels);
839 return (uint8_t*)fPixels + y * fRowBytes + x;
843 SkASSERT(fPixels);
847 return (*fColorTable)[*((const uint8_t*)fPixels
[all...]
/external/skia/src/core/
H A DSkWritePixelsRec.h18 : fPixels(pixels)
25 const void* fPixels; member in struct:SkWritePixelsRec
/external/skia/src/image/
H A DSkReadPixelsRec.h18 : fPixels(pixels)
25 void* fPixels; member in struct:SkReadPixelsRec

Completed in 1479 milliseconds