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.h42 void* pixels() const { return fPixels; }
122 void* fPixels; member in class:SkPixelRef
H A DSkPixmap.h28 : fPixels(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
32 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
60 const void* addr() const { return fPixels; }
103 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
107 return reinterpret_cast<const uint8_t*>(fPixels);
111 return reinterpret_cast<const uint16_t*>(fPixels);
115 return reinterpret_cast<const uint32_t*>(fPixels);
119 return reinterpret_cast<const uint64_t*>(fPixels);
124 return reinterpret_cast<const uint16_t*>(fPixels);
156 void* writable_addr() const { return const_cast<void*>(fPixels); }
225 const void* fPixels; member in class:SkPixmap
[all...]
H A DSkBitmap.h145 void* getPixels() const { return fPixels; }
736 void* fPixels; member in class:SkBitmap
757 SkASSERT(fPixels);
760 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
764 SkASSERT(fPixels);
767 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
771 SkASSERT(fPixels);
774 return (uint8_t*)fPixels + y * fRowBytes + x;
/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 138 milliseconds