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

  /external/skia/src/core/
SkYUVPlanesCache.h 26 * fRowBytes: rowBytes for each of the 3 planes (in bytes).
32 size_t fRowBytes[3];
SkConfig8888.h 18 size_t fRowBytes;
  /external/skia/src/image/
SkReadPixelsRec.h 19 , fRowBytes(rowBytes)
26 size_t fRowBytes;
32 * On true, may have modified its fields (except fRowBytes) to make it a legal subset
SkSurface_Raster.cpp 34 size_t fRowBytes;
95 fRowBytes = 0; // don't need to track the rowbytes
106 fRowBytes = pr->rowBytes(); // we track this, so that subsequent re-allocs will match
160 SkASSERT(fBitmap.rowBytes() == fRowBytes); // be sure we always use the same value
  /external/skia/src/lazy/
SkDiscardablePixelRef.h 44 const size_t fRowBytes;
  /external/skia/include/core/
SkMask.h 36 uint32_t fRowBytes;
63 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
74 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
86 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
99 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkPixelRef.h 55 size_t rowBytes() const { return fRec.fRowBytes; }
66 size_t fRowBytes;
71 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
195 size_t fRowBytes;
SkPixmap.h 26 : fPixels(NULL), fCTable(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
31 : fPixels(addr), fCTable(ctable), fRowBytes(rowBytes), fInfo(info)
62 size_t rowBytes() const { return fRowBytes; }
74 uint64_t getSize64() const { return sk_64_mul(fInfo.height(), fRowBytes); }
75 uint64_t getSafeSize64() const { return fInfo.getSafeSize64(fRowBytes); }
76 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
79 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
108 return (const uint8_t*)((const char*)this->addr8() + y * fRowBytes + (x << 0));
113 return (const uint16_t*)((const char*)this->addr16() + y * fRowBytes + (x << 1));
118 return (const uint32_t*)((const char*)this->addr32() + y * fRowBytes + (x << 2))
    [all...]
SkBitmap.h 101 return fRowBytes >> this->shiftPerPixel();
128 size_t rowBytes() const { return fRowBytes; }
149 size_t getSize() const { return fInfo.height() * fRowBytes; }
155 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
161 return sk_64_mul(fInfo.height(), fRowBytes);
170 return fInfo.getSafeSize64(fRowBytes);
766 uint32_t fRowBytes;
    [all...]

Completed in 237 milliseconds