HomeSort by relevance Sort by last modified time
    Searched refs:dstBitmap (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 16 * @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);
  /external/skia/platform_tools/android/examples/hello_skia_app/jni/
helloskia.cpp 16 * @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);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameImage2D.java 171 Bitmap dstBitmap = Bitmap.createBitmap(dstImage.getWidth(), dstImage.getHeight(), config);
172 Canvas canvas = new Canvas(dstBitmap);
181 dstImage.setBitmap(dstBitmap);
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType_common.cpp 449 SkBitmap dstBitmap;
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 into the LCD16 glyph.fImage
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 449 SkBitmap dstBitmap;
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 into the LCD16 glyph.fImage
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 118 int x, int y, int width, int height, const SkBitmap& dstBitmap) {
119 SkAutoLockPixels alp(dstBitmap);
120 void* dst = dstBitmap.getPixels();
121 FromColorProc proc = ChooseFromColorProc(dstBitmap);
131 dst = dstBitmap.getAddr(x, y);
136 dst = (char*)dst + dstBitmap.rowBytes();
139 dstBitmap.notifyPixelsChanged();
    [all...]
GraphicsJNI.h 102 Whether to use premultiplied pixels is determined by dstBitmap's alphaType.
106 const SkBitmap& dstBitmap);
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusFlat.h     [all...]

Completed in 140 milliseconds