Home | History | Annotate | Download | only in view

Lines Matching defs:screenshot

524      * @param display The display to take the screenshot of.
525 * @param consumer The {@link Surface} to take the screenshot into.
531 * include in the screenshot.
533 * include in the screenshot.
535 public static void screenshot(IBinder display, Surface consumer,
537 screenshot(display, consumer, width, height, minLayer, maxLayer, false);
543 * @param display The display to take the screenshot of.
544 * @param consumer The {@link Surface} to take the screenshot into.
550 public static void screenshot(IBinder display, Surface consumer,
552 screenshot(display, consumer, width, height, 0, 0, true);
558 * @param display The display to take the screenshot of.
559 * @param consumer The {@link Surface} to take the screenshot into.
561 public static void screenshot(IBinder display, Surface consumer) {
562 screenshot(display, consumer, 0, 0, 0, 0, true);
569 * CAVEAT: Versions of screenshot that return a {@link Bitmap} can
572 * {@link SurfaceControl#screenshot(IBinder, Surface)}.
579 * include in the screenshot.
581 * include in the screenshot.
586 public static Bitmap screenshot(int width, int height, int minLayer, int maxLayer) {
594 * Like {@link SurfaceControl#screenshot(int, int, int, int)} but includes all
595 * Surfaces in the screenshot.
605 public static Bitmap screenshot(int width, int height) {
612 private static void screenshot(IBinder display, Surface consumer,