HomeSort by relevance Sort by last modified time
    Searched refs:fPixels (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/skia/src/gpu/
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...]
GrSWMaskHelper.h 38 : fPixels(pixels ? pixels : &fPixelsStorage) { }
56 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
61 SkAutoPixmapStorage* fPixels;
GrSWMaskHelper.cpp 82 if (!fPixels->tryAlloc(bmImageInfo)) {
85 fPixels->erase(0);
88 fDraw.fDst = *fPixels;
97 desc.fWidth = fPixels->width();
98 desc.fHeight = fPixels->height();
111 if (!sContext->writePixels(ii, fPixels->addr(), fPixels->rowBytes(), 0, 0)) {
  /external/skqp/src/gpu/
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;
GrSWMaskHelper.h 38 : fPixels(pixels ? pixels : &fPixelsStorage) { }
56 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
61 SkAutoPixmapStorage* fPixels;
GrSWMaskHelper.cpp 82 if (!fPixels->tryAlloc(bmImageInfo)) {
85 fPixels->erase(0);
88 fDraw.fDst = *fPixels;
97 desc.fWidth = fPixels->width();
98 desc.fHeight = fPixels->height();
111 if (!sContext->writePixels(ii, fPixels->addr(), fPixels->rowBytes(), 0, 0)) {
  /external/skia/src/core/
SkWritePixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.addr())
33 const void* fPixels;
SkPixmapPriv.h 69 pm->fPixels = address;
SkImageInfo.cpp 208 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
230 fPixels = ((char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
244 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
266 fPixels = ((const char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
SkPixelRef.cpp 36 , fPixels(pixels)
63 // note: we do not change fPixels
SkPixmap.cpp 29 fPixels = nullptr;
38 fPixels = addr;
70 if (fPixels) {
72 pixels = (const uint8_t*)fPixels + r.fTop * fRowBytes + r.fLeft * bpp;
91 SkConvertPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, srcInfo, srcPixels, this->rowBytes(),
105 if (nullptr == fPixels) {
336 (const uint64_t*)fPixels + y * (fRowBytes >> 3) + x;
  /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;
SkPixmapPriv.h 69 pm->fPixels = address;
SkImageInfo.cpp 168 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
190 fPixels = ((char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
204 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
226 fPixels = ((const char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
SkPixelRef.cpp 36 , fPixels(pixels)
63 // note: we do not change fPixels
  /external/skqp/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.writable_addr())
33 void* fPixels;
  /external/skia/include/core/
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...]
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 39 void* pixels() const { return fPixels; }
111 void* fPixels;
  /external/skqp/include/core/
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...]
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 39 void* pixels() const { return fPixels; }
111 void* fPixels;
  /external/skia/tools/fiddle/
fiddle_main.cpp 160 texels[0].fPixels = pixmap->addr();
164 texels[i].fPixels = nullptr;
218 texels[0].fPixels = data.get();
222 texels[i].fPixels = nullptr;
  /external/skqp/tools/fiddle/
fiddle_main.cpp 160 texels[0].fPixels = pixmap->addr();
164 texels[i].fPixels = nullptr;
218 texels[0].fPixels = data.get();
222 texels[i].fPixels = nullptr;

Completed in 537 milliseconds

1 2 3