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

  /external/skia/src/core/
SkWritePixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.addr())
33 const void* fPixels;
  /external/skia/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.writable_addr())
33 void* fPixels;
  /external/skqp/src/core/
SkWritePixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.addr())
33 const void* fPixels;
  /external/skqp/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.writable_addr())
33 void* fPixels;
  /external/skia/src/gpu/
GrSWMaskHelper.h 38 : fPixels(pixels ? pixels : &fPixelsStorage) { }
56 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
61 SkAutoPixmapStorage* fPixels;
GrDeferredProxyUploader.h 28 * the payload data to allocate and fill in the fPixels pixmap.
38 * Finally, we call resetDeferredUploader, which deletes the uploader object, causing fPixels
58 GrColorType pixelColorType = SkColorTypeToGrColorType(this->fPixels.info().colorType());
61 if (this->fPixels.addr()) {
62 writePixelsFn(proxy, 0, 0, this->fPixels.width(), this->fPixels.height(),
63 pixelColorType, this->fPixels.addr(), this->fPixels.rowBytes());
77 SkAutoPixmapStorage* getPixels() { return &fPixels; }
90 SkAutoPixmapStorage fPixels;
    [all...]
  /external/skqp/src/gpu/
GrSWMaskHelper.h 38 : fPixels(pixels ? pixels : &fPixelsStorage) { }
56 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
61 SkAutoPixmapStorage* fPixels;
GrDeferredProxyUploader.h 28 * the payload data to allocate and fill in the fPixels pixmap.
38 * Finally, we call resetDeferredUploader, which deletes the uploader object, causing fPixels
60 if (this->fPixels.addr()) {
61 writePixelsFn(proxy, 0, 0, this->fPixels.width(), this->fPixels.height(),
62 proxy->config(), this->fPixels.addr(), this->fPixels.rowBytes());
76 SkAutoPixmapStorage* getPixels() { return &fPixels; }
89 SkAutoPixmapStorage fPixels;
  /external/skia/include/core/
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 39 void* pixels() const { return fPixels; }
111 void* fPixels;
SkPixmap.h 41 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
63 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
137 const void* addr() const { return fPixels; }
263 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
276 return reinterpret_cast<const uint8_t*>(fPixels);
289 return reinterpret_cast<const uint16_t*>(fPixels);
302 return reinterpret_cast<const uint32_t*>(fPixels);
315 return reinterpret_cast<const uint64_t*>(fPixels);
330 return reinterpret_cast<const uint16_t*>(fPixels);
429 void* writable_addr() const { return const_cast<void*>(fPixels); }
    [all...]
  /external/skqp/include/core/
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 39 void* pixels() const { return fPixels; }
111 void* fPixels;
SkPixmap.h 41 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
63 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
145 const void* addr() const { return fPixels; }
270 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
283 return reinterpret_cast<const uint8_t*>(fPixels);
296 return reinterpret_cast<const uint16_t*>(fPixels);
309 return reinterpret_cast<const uint32_t*>(fPixels);
322 return reinterpret_cast<const uint64_t*>(fPixels);
337 return reinterpret_cast<const uint16_t*>(fPixels);
436 void* writable_addr() const { return const_cast<void*>(fPixels); }
    [all...]

Completed in 98 milliseconds