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

  /external/skia/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
25 void* fPixels;
SkImage.cpp 57 return as_IB(this)->onReadPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY, chint);
  /external/skia/src/gpu/
GrSWMaskHelper.cpp 148 fPixels.width(), fPixels.height(), fCompressedBuffer.get(), &allocator,
212 if (!fPixels.tryAlloc(bmImageInfo)) {
215 fPixels.erase(0);
218 fPixels.reset(bmImageInfo);
220 fDraw.fDst = fPixels;
233 desc.fWidth = fPixels.width();
234 desc.fHeight = fPixels.height();
267 SkAutoDataUnref cmpData(SkTextureCompressor::CompressBitmapToFormat(fPixels,
279 desc.fWidth = fPixels.width()
    [all...]
GrSWMaskHelper.h 72 fPixels.erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF));
108 SkAutoPixmapStorage fPixels;
GrContext.cpp 223 srcPI.fPixels = inPixels;
229 dstPI.fPixels = outPixels;
486 dstPI.fPixels = buffer;
492 srcPI.fPixels = buffer;
SkGrPixelRef.cpp 37 rec->fPixels = fBitmap.getPixels();
SkGr.cpp 138 dstPI.fPixels = buffer;
144 srcPI.fPixels = ctable->readColors();
  /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
SkPixelRef.cpp 107 fRec.fPixels = pixels;
126 if (fRec.fPixels) {
156 if (fRec.fPixels) {
180 if (fRec.fPixels) {
204 result->fPixels = fRec.fPixels;
213 if (result->fPixels) {
349 result->fPixels = fRec.fPixels;
SkImageInfo.cpp 94 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
116 fPixels = ((char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
SkConfig8888.cpp 95 if (fPixels == dst->fPixels) {
117 uint32_t* dstP = static_cast<uint32_t*>(dst->fPixels);
118 const uint32_t* srcP = static_cast<const uint32_t*>(fPixels);
196 dstPI.fPixels = dstPixels;
202 srcPI.fPixels = srcPixels;
SkPixmap.cpp 29 fPixels = nullptr;
39 fPixels = addr;
68 if (fPixels) {
70 pixels = (const uint8_t*)fPixels + r.fTop * fRowBytes + r.fLeft * bpp;
121 if (nullptr == fPixels) {
SkBitmap.cpp 62 fPixels = nullptr;
90 SkTSwap(fPixels, other.fPixels);
175 fPixels = p;
179 fPixels = nullptr;
414 fPixels = nullptr;
605 const uint64_t* addr = (const uint64_t*)fPixels + y * (fRowBytes >> 3) + x;
    [all...]
SkMallocPixelRef.cpp 198 rec->fPixels = fStorage;
SkResourceCache.cpp 143 rec->fPixels = fDM->data();
SkCanvas.cpp 901 return device->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
    [all...]
  /external/skia/include/core/
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...]
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;
SkBitmap.h 143 void* getPixels() const { return fPixels; }
749 mutable void* fPixels;
806 SkASSERT(fPixels)
    [all...]
  /external/skia/src/lazy/
SkDiscardablePixelRef.cpp 45 rec->fPixels = fDiscardableMemory->data();
93 rec->fPixels = pixels;
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 103 rec->fPixels = mStorage;
    [all...]

Completed in 298 milliseconds