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

1 2 3 4 5

  /external/skia/src/core/
SkConfig8888.h 16 size_t fRowBytes;
SkMipMap.h 22 uint32_t fRowBytes;
SkMask.cpp 22 return safeMul32(fBounds.height(), fRowBytes);
70 addr += (y - fBounds.fTop) * fRowBytes;
  /external/chromium_org/third_party/skia/src/lazy/
SkDiscardablePixelRef.cpp 19 , fRowBytes(rowBytes)
23 SkASSERT(fRowBytes > 0);
44 rec->fRowBytes = fRowBytes;
51 const size_t size = this->info().getSafeSize(fRowBytes);
68 if (!fGenerator->getPixels(info, pixels, fRowBytes)) {
70 if (!fGenerator->getPixels(info, pixels, fRowBytes, colors, &colorCount)) {
91 rec->fRowBytes = fRowBytes;
SkCachingPixelRef.cpp 34 , fRowBytes(rowBytes) {
57 if ((!bitmap.setInfo(info, fRowBytes)) || !bitmap.allocPixels()) {
62 if (!fImageGenerator->getPixels(info, bitmap.getPixels(), fRowBytes)) {
89 rec->fRowBytes = bitmap.rowBytes();
SkCachingPixelRef.h 62 const size_t fRowBytes;
SkDiscardablePixelRef.h 40 const size_t fRowBytes;
  /external/skia/src/lazy/
SkDiscardablePixelRef.cpp 19 , fRowBytes(rowBytes)
23 SkASSERT(fRowBytes > 0);
44 rec->fRowBytes = fRowBytes;
51 const size_t size = this->info().getSafeSize(fRowBytes);
68 if (!fGenerator->getPixels(info, pixels, fRowBytes)) {
70 if (!fGenerator->getPixels(info, pixels, fRowBytes, colors, &colorCount)) {
91 rec->fRowBytes = fRowBytes;
SkCachingPixelRef.cpp 34 , fRowBytes(rowBytes) {
57 if ((!bitmap.setInfo(info, fRowBytes)) || !bitmap.allocPixels()) {
62 if (!fImageGenerator->getPixels(info, bitmap.getPixels(), fRowBytes)) {
89 rec->fRowBytes = bitmap.rowBytes();
SkCachingPixelRef.h 62 const size_t fRowBytes;
SkDiscardablePixelRef.h 40 const size_t fRowBytes;
  /external/chromium_org/third_party/skia/include/core/
SkMask.h 35 uint32_t fRowBytes;
62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
85 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
98 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
111 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkPixelRef.h 70 size_t rowBytes() const { return fRec.fRowBytes; }
79 size_t fRowBytes;
84 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
  /external/skia/include/core/
SkMask.h 35 uint32_t fRowBytes;
62 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
73 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
85 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
98 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
111 uint32_t* row = (uint32_t*)(fImage + (y - fBounds.fTop) * fRowBytes);
SkPixelRef.h 70 size_t rowBytes() const { return fRec.fRowBytes; }
79 size_t fRowBytes;
84 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
  /external/chromium_org/third_party/skia/src/core/
SkConfig8888.h 16 size_t fRowBytes;
SkMipMap.h 22 uint32_t fRowBytes;
SkMask.cpp 22 return safeMul32(fBounds.height(), fRowBytes);
70 addr += (y - fBounds.fTop) * fRowBytes;
  /external/chromium_org/third_party/skia/src/effects/
SkStippleMaskFilter.cpp 21 dst->fRowBytes = dst->fBounds.width();
40 scanline += dst->fRowBytes;
41 srcScanLine += src.fRowBytes;
SkBlurMask.cpp 531 dst->fRowBytes = dst->fBounds.width();
557 w = boxBlur(sp, src.fRowBytes, tp, loRadius, hiRadius, w, h, false);
565 w = boxBlur(sp, src.fRowBytes, tp, rx, rx, w, h, true);
571 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight);
579 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight);
594 merge_src_with_blur(dst->fImage, src.fRowBytes,
595 sp, src.fRowBytes,
596 dp + passCount * (rx + ry * dst->fRowBytes),
597 dst->fRowBytes, sw, sh);
600 clamp_with_orig(dp + passCount * (rx + ry * dst->fRowBytes),
    [all...]
  /external/skia/src/effects/
SkStippleMaskFilter.cpp 21 dst->fRowBytes = dst->fBounds.width();
40 scanline += dst->fRowBytes;
41 srcScanLine += src.fRowBytes;
SkBlurMask.cpp 531 dst->fRowBytes = dst->fBounds.width();
557 w = boxBlur(sp, src.fRowBytes, tp, loRadius, hiRadius, w, h, false);
565 w = boxBlur(sp, src.fRowBytes, tp, rx, rx, w, h, true);
571 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, false, outerWeight);
579 w = boxBlurInterp(sp, src.fRowBytes, tp, rx, w, h, true, outerWeight);
594 merge_src_with_blur(dst->fImage, src.fRowBytes,
595 sp, src.fRowBytes,
596 dp + passCount * (rx + ry * dst->fRowBytes),
597 dst->fRowBytes, sw, sh);
600 clamp_with_orig(dp + passCount * (rx + ry * dst->fRowBytes),
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePathUtils.cpp 41 static const size_t fRowBytes = 2;
42 static const int fNumChars = fH * fRowBytes;
83 gBitsToPath_fns[j](&path, (char*) &gBits[i], fW, fH, fRowBytes);
  /external/skia/samplecode/
SamplePathUtils.cpp 41 static const size_t fRowBytes = 2;
42 static const int fNumChars = fH * fRowBytes;
83 gBitsToPath_fns[j](&path, (char*) &gBits[i], fW, fH, fRowBytes);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockDiscardablePixelRef.h 73 rec->fRowBytes = m_rowBytes;

Completed in 434 milliseconds

1 2 3 4 5