Searched defs:destClip (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java362 * @param destClip Optional clip in the bitmap bounds.
369 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, argument
375 if (destClip != null) {
376 if (destClip.left < 0 || destClip.top < 0
377 || destClip.right > destination.getWidth()
378 || destClip.bottom > destination.getHeight()) {
395 final int contentLeft = (destClip != null) ? destClip.left : 0;
396 final int contentTop = (destClip !
[all...]

Completed in 7 milliseconds