OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sourceBitmap
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/pdf/
SkBitSet.cpp
78
uint32_t*
sourceBitmap
= source.internalGet(0);
80
targetBitmap[i] |=
sourceBitmap
[i];
/external/webkit/Tools/DumpRenderTree/chromium/
TestShell.cpp
547
const SkBitmap&
sourceBitmap
= canvas->getTopDevice()->accessBitmap(false);
548
SkAutoLockPixels sourceBitmapLock(
sourceBitmap
);
553
digester.addBytes(reinterpret_cast<const uint8_t*>(
sourceBitmap
.getPixels()),
sourceBitmap
.getSize());
568
webkit_support::EncodeBGRAPNGWithChecksum(reinterpret_cast<const unsigned char*>(
sourceBitmap
.getPixels()),
sourceBitmap
.width(),
569
sourceBitmap
.height(), static_cast<int>(
sourceBitmap
.rowBytes()), discardTransparency, md5hash, &png);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLUtils.h
88
static bool deepCopyBitmapSubset(const SkBitmap&
sourceBitmap
,
GLUtils.cpp
622
bool GLUtils::deepCopyBitmapSubset(const SkBitmap&
sourceBitmap
,
625
sourceBitmap
.lockPixels();
627
char* srcPixels = (char*)
sourceBitmap
.getPixels();
633
sourceBitmap
.unlockPixels();
636
int srcRowSize =
sourceBitmap
.rowBytes();
640
srcOffset += (leftOffset *
sourceBitmap
.bytesPerPixel());
645
sourceBitmap
.unlockPixels();
Surface.cpp
445
SkBitmap
sourceBitmap
= prerenderedInval->bitmap;
465
subset.setConfig(
sourceBitmap
.config(), enclosingScreenDirty.width(),
471
if (!GLUtils::deepCopyBitmapSubset(
sourceBitmap
, subset, leftOffset, topOffset))
/frameworks/base/media/mca/samples/CameraEffectsRecordingSample/java/android/media/filterfw/samples/
CameraEffectsRecordingSample.java
71
Bitmap
sourceBitmap
= BitmapFactory.decodeResource(getResources(), R.drawable.android);
Completed in 761 milliseconds