HomeSort by relevance Sort by last modified time
    Searched defs:fPixels (Results 1 - 7 of 7) sorted by null

  /external/skia/src/core/
SkWritePixelsRec.h 18 : fPixels(pixels)
25 const void* fPixels;
  /external/skia/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
25 void* fPixels;
  /external/skia/src/gpu/
GrSWMaskHelper.h 65 fPixels.erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
91 SkAutoPixmapStorage fPixels;
  /external/skia/include/core/
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 42 void* pixels() const { return fPixels; }
122 void* fPixels;
SkPixmap.h 28 : 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); }
    [all...]
SkBitmap.h 145 void* getPixels() const { return fPixels; }
736 void* fPixels;
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;

Completed in 204 milliseconds