Searched refs:dstBitmap (Results 1 - 3 of 3) sorted by last modified time

/external/skia/platform_tools/android/examples/hello_skia_app/jni/
H A Dhelloskia.cpp16 * @param dstBitmap The bitmap to place the results of skia into
21 jobject thiz, jobject dstBitmap, jlong elapsedTime)
26 AndroidBitmap_getInfo(env, dstBitmap, &dstInfo);
27 AndroidBitmap_lockPixels(env, dstBitmap, &dstPixels);
69 AndroidBitmap_unlockPixels(env, dstBitmap);
20 Java_com_example_HelloSkiaActivity_drawIntoBitmap(JNIEnv* env, jobject thiz, jobject dstBitmap, jlong elapsedTime) argument
/external/skia/src/ports/
H A DSkFontHost_FreeType_common.cpp449 SkBitmap dstBitmap; local
450 dstBitmap.setInfo(SkImageInfo::Make(glyph.fWidth, glyph.fHeight,
455 dstBitmap.allocPixels();
457 dstBitmap.setPixels(glyph.fImage);
460 // Scale unscaledBitmap into dstBitmap.
461 SkCanvas canvas(dstBitmap);
471 // Copy the A8 dstBitmap into the A1 glyph.fImage.
474 packA8ToA1(dstMask, dstBitmap.getAddr8(0, 0), dstBitmap.rowBytes());
476 // Copy the A8 dstBitmap int
[all...]
/external/skia/tests/
H A DSkImageTest.cpp28 SkBitmap dstBitmap; local
29 srcBitmap.extractSubset(&dstBitmap, r);
30 image.reset(SkNewImageFromBitmap(dstBitmap, true, NULL));

Completed in 151 milliseconds