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

  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
PictureDrawableTest.java 57 Bitmap destBitmap = Bitmap.createBitmap(100, 200, Bitmap.Config.ARGB_8888);
59 Canvas canvas = new Canvas(destBitmap);
65 assertEquals(0xff0f0b0c, destBitmap.getPixel(10, 10));
68 assertEquals(0xff0a0c0b, destBitmap.getPixel(10, 10));
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
Healing.java 90 Bitmap destBitmap = createMutableBitmap(image, mRoiBounds.left, mRoiBounds.top,
92 Allocation dest_uc4 = Allocation.createFromBitmap(rs, destBitmap);
128 dest_uc4.copyTo(destBitmap);
130 destBitmap.setHasAlpha(true);
141 c.drawBitmap(destBitmap, mRoiBounds.left, mRoiBounds.top, null);
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
Healing.java 135 Bitmap destBitmap = createMutableBitmap(image, mRoiBounds.left, mRoiBounds.top,
137 Allocation dest_uc4 = Allocation.createFromBitmap(rs, destBitmap);
172 dest_uc4.copyTo(destBitmap);
174 destBitmap.setHasAlpha(true);
185 c.drawBitmap(destBitmap, mRoiBounds.left, mRoiBounds.top, null);
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 346 Bitmap destBitmap = Bitmap.createBitmap(tempBitmap.getWidth(),
348 Allocation outAllocation = Allocation.createFromBitmap(mRS, destBitmap);
349 performFilter(inAllocation, outAllocation, destBitmap, f);
352 button.setThumbnail(destBitmap);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 346 Bitmap destBitmap = Bitmap.createBitmap(tempBitmap.getWidth(),
348 Allocation outAllocation = Allocation.createFromBitmap(mRS, destBitmap);
349 performFilter(inAllocation, outAllocation, destBitmap, f);
352 button.setThumbnail(destBitmap);
  /external/skia/tests/
SerializationTest.cpp 351 SkBitmap destBitmap = draw_picture(*loadedPicture);
352 compare_bitmaps(reporter, origBitmap, destBitmap);

Completed in 412 milliseconds