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

  /external/skia/src/core/
SkWritePixelsRec.h 19 , fRowBytes(rowBytes)
26 size_t fRowBytes;
32 * On true, may have modified its fields (except fRowBytes) to make it a legal subset
SkBitmapCache.cpp 132 , fRowBytes(rowBytes)
163 return sizeof(fKey) + fInfo.getSafeSize(fRowBytes);
228 bitmap->installPixels(fInfo, fDM ? fDM->data() : fMalloc, fRowBytes, ReleaseProc, this);
259 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 30 size_t fRowBytes;
103 fRowBytes = 0; // don't need to track the rowbytes
112 fRowBytes = pr->rowBytes(); // we track this, so that subsequent re-allocs will match
167 SkASSERT(fBitmap.rowBytes() == fRowBytes); // be sure we always use the same value
SkImage_Gpu.cpp 213 if (!sContext->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY, flags)) {
226 apply_premul(rec.fInfo, rec.fPixels, rec.fRowBytes);
553 size_t fRowBytes;
    [all...]
  /external/skia/include/core/
SkRasterHandleAllocator.h 49 size_t fRowBytes; // rowbytes for these pixels
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 43 size_t rowBytes() const { return fRowBytes; }
123 size_t fRowBytes;
SkPixmap.h 28 : fPixels(NULL), fRowBytes(0), fInfo(SkImageInfo::MakeUnknown(0, 0))
32 : fPixels(addr), fRowBytes(rowBytes), fInfo(info)
59 size_t rowBytes() const { return fRowBytes; }
74 int rowBytesAsPixels() const { return int(fRowBytes >> this->shiftPerPixel()); }
82 uint64_t getSize64() const { return sk_64_mul(fInfo.height(), fRowBytes); }
83 uint64_t getSafeSize64() const { return fInfo.getSafeSize64(fRowBytes); }
84 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
103 return (const char*)fPixels + fInfo.computeOffset(x, y, fRowBytes);
132 return (const uint8_t*)((const char*)this->addr8() + y * fRowBytes + (x << 0));
137 return (const uint16_t*)((const char*)this->addr16() + y * fRowBytes + (x << 1))
    [all...]
SkBitmap.h 101 return fRowBytes >> this->shiftPerPixel();
130 size_t rowBytes() const { return fRowBytes; }
151 size_t getSize() const { return fInfo.height() * fRowBytes; }
157 size_t getSafeSize() const { return fInfo.getSafeSize(fRowBytes); }
163 return sk_64_mul(fInfo.height(), fRowBytes);
172 return fInfo.getSafeSize64(fRowBytes);
739 uint32_t fRowBytes;
760 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
767 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
774 return (uint8_t*)fPixels + y * fRowBytes + x
    [all...]
  /external/skia/src/codec/
SkPngCodec.cpp 488 , fRowBytes(0)
504 size_t fRowBytes;
521 fRowBytes = rowBytes;
544 fDst = SkTAddOffset<void>(fDst, fRowBytes);
552 fRowBytes = rowBytes;
587 fDst = SkTAddOffset<void>(fDst, fRowBytes);
622 size_t fRowBytes;
701 fRowBytes = rowBytes;
730 dst = SkTAddOffset<void>(dst, fRowBytes);
    [all...]

Completed in 126 milliseconds