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

  /external/skia/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
25 void* fPixels;
  /external/skia/src/core/
SkConfig8888.h 26 void* fPixels;
30 const void* fPixels;
32 // Guaranteed to work even if src.fPixels and dst.fPixels are the same
  /external/skia/src/gpu/
GrSWMaskHelper.h 72 fPixels.erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
108 SkAutoPixmapStorage fPixels;
  /external/skia/include/core/
SkPixelRef.h 49 void* pixels() const { return fRec.fPixels; }
62 LockRec() : fPixels(NULL), fColorTable(NULL) {}
64 void* fPixels;
71 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
188 LockResult() : fPixels(NULL), fCTable(NULL) {}
193 const void* fPixels;
SkPixmap.h 26 : fPixels(NULL), fCTable(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
31 : fPixels(addr), fCTable(ctable), fRowBytes(rowBytes), fInfo(info)
63 const void* addr() const { return fPixels; }
79 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
83 return reinterpret_cast<const uint8_t*>(fPixels);
87 return reinterpret_cast<const uint16_t*>(fPixels);
91 return reinterpret_cast<const uint32_t*>(fPixels);
95 return reinterpret_cast<const uint64_t*>(fPixels);
100 return reinterpret_cast<const uint16_t*>(fPixels);
132 void* writable_addr() const { return const_cast<void*>(fPixels); }
    [all...]
SkBitmap.h 143 void* getPixels() const { return fPixels; }
749 mutable void* fPixels;
806 SkASSERT(fPixels)
    [all...]

Completed in 274 milliseconds