Home
last modified time | relevance | path

Searched refs:sourceBitmap (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Tools/DumpRenderTree/chromium/
DTestShell.cpp547 const SkBitmap& sourceBitmap = canvas->getTopDevice()->accessBitmap(false); in dumpImage() local
548 SkAutoLockPixels sourceBitmapLock(sourceBitmap); in dumpImage()
553 …digester.addBytes(reinterpret_cast<const uint8_t*>(sourceBitmap.getPixels()), sourceBitmap.getSize… in dumpImage()
568 …RAPNGWithChecksum(reinterpret_cast<const unsigned char*>(sourceBitmap.getPixels()), sourceBitmap.w… in dumpImage()
569sourceBitmap.height(), static_cast<int>(sourceBitmap.rowBytes()), discardTransparency, md5hash, &p… in dumpImage()
/external/skia/src/utils/
DSkBitSet.cpp78 uint32_t* sourceBitmap = source.internalGet(0); in orBits() local
80 targetBitmap[i] |= sourceBitmap[i]; in orBits()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGLUtils.cpp624 bool GLUtils::deepCopyBitmapSubset(const SkBitmap& sourceBitmap, in deepCopyBitmapSubset() argument
627 sourceBitmap.lockPixels(); in deepCopyBitmapSubset()
629 char* srcPixels = (char*) sourceBitmap.getPixels(); in deepCopyBitmapSubset()
635 sourceBitmap.unlockPixels(); in deepCopyBitmapSubset()
638 int srcRowSize = sourceBitmap.rowBytes(); in deepCopyBitmapSubset()
642 srcOffset += (leftOffset * sourceBitmap.bytesPerPixel()); in deepCopyBitmapSubset()
647 sourceBitmap.unlockPixels(); in deepCopyBitmapSubset()
DSurface.cpp444 SkBitmap sourceBitmap = prerenderedInval->bitmap; in blitFromContents() local
464 subset.setConfig(sourceBitmap.config(), enclosingScreenDirty.width(), in blitFromContents()
470 if (!GLUtils::deepCopyBitmapSubset(sourceBitmap, subset, leftOffset, topOffset)) in blitFromContents()
DGLUtils.h88 static bool deepCopyBitmapSubset(const SkBitmap& sourceBitmap,