HomeSort by relevance Sort by last modified time
    Searched refs:fPixels (Results 1 - 25 of 52) 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 40 : fPixels(pixels ? pixels : &fPixelsStorage) { }
58 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
63 SkAutoPixmapStorage* fPixels;
GrSWMaskHelper.cpp 83 if (!fPixels->tryAlloc(bmImageInfo)) {
86 fPixels->erase(0);
88 fDraw.fDst = *fPixels;
96 SkImageInfo ii = SkImageInfo::MakeA8(fPixels->width(), fPixels->height());
97 size_t rowBytes = fPixels->rowBytes();
99 sk_sp<SkData> data = fPixels->detachPixelsAsData();
  /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
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 39 : fPixels(pixels ? pixels : &fPixelsStorage) { }
57 fPixels->erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
62 SkAutoPixmapStorage* fPixels;
GrSWMaskHelper.cpp 83 if (!fPixels->tryAlloc(bmImageInfo)) {
86 fPixels->erase(0);
88 fDraw.fDst = *fPixels;
95 SkImageInfo ii = SkImageInfo::MakeA8(fPixels->width(), fPixels->height());
96 size_t rowBytes = fPixels->rowBytes();
98 sk_sp<SkData> data = fPixels->detachPixelsAsData();
  /external/skia/src/core/
SkWritePixelsRec.h 18 : fPixels(pixels)
26 : fPixels(pm.addr())
33 const void* fPixels;
SkImageInfo.cpp 105 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
128 fPixels = ((char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
142 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
165 fPixels = ((const char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
SkPixmapPriv.h 60 pm->fPixels = address;
SkPixmap.cpp 34 fPixels = nullptr;
43 fPixels = addr;
75 if (fPixels) {
77 pixels = (const uint8_t*)fPixels + r.fTop * fRowBytes + r.fLeft * bpp;
148 SkConvertPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, srcInfo, srcPixels, this->rowBytes());
311 (const uint64_t*)fPixels + y * (fRowBytes >> 3) + x;
324 (const float*)fPixels + 4*y*(fRowBytes >> 4) + 4*x;
SkPixelRef.cpp 31 , fPixels(pixels)
48 // note: we do not change 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;
SkImageInfo.cpp 103 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
126 fPixels = ((char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
140 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
163 fPixels = ((const char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
SkPixmapPriv.h 60 pm->fPixels = address;
SkPixmap.cpp 34 fPixels = nullptr;
43 fPixels = addr;
75 if (fPixels) {
77 pixels = (const uint8_t*)fPixels + r.fTop * fRowBytes + r.fLeft * bpp;
147 SkConvertPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, srcInfo, srcPixels, this->rowBytes());
309 (const uint64_t*)fPixels + y * (fRowBytes >> 3) + x;
322 (const float*)fPixels + 4*y*(fRowBytes >> 4) + 4*x;
SkPixelRef.cpp 31 , fPixels(pixels)
48 // 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 51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
147 const void* addr() const { return fPixels; }
295 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
308 return reinterpret_cast<const uint8_t*>(fPixels);
321 return reinterpret_cast<const uint16_t*>(fPixels);
334 return reinterpret_cast<const uint32_t*>(fPixels);
347 return reinterpret_cast<const uint64_t*>(fPixels);
363 return reinterpret_cast<const uint16_t*>(fPixels);
463 void* writable_addr() const { return const_cast<void*>(fPixels); }
    [all...]
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 40 void* pixels() const { return fPixels; }
97 void* fPixels;
  /external/skqp/include/core/
SkPixmap.h 51 : fPixels(nullptr), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
73 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
147 const void* addr() const { return fPixels; }
285 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
298 return reinterpret_cast<const uint8_t*>(fPixels);
311 return reinterpret_cast<const uint16_t*>(fPixels);
324 return reinterpret_cast<const uint32_t*>(fPixels);
337 return reinterpret_cast<const uint64_t*>(fPixels);
352 return reinterpret_cast<const uint16_t*>(fPixels);
451 void* writable_addr() const { return const_cast<void*>(fPixels); }
    [all...]
SkRasterHandleAllocator.h 48 void* fPixels; // pixels for this allocation
SkPixelRef.h 40 void* pixels() const { return fPixels; }
97 void* fPixels;
  /external/skia/tools/fiddle/
fiddle_main.cpp 157 texels[0].fPixels = pixmap->addr();
161 texels[i].fPixels = nullptr;
212 texels[0].fPixels = data.get();
216 texels[i].fPixels = nullptr;

Completed in 1251 milliseconds

1 2 3