private static void assertNotTooLarge()

in core/src/main/java/com/facebook/testing/screenshot/internal/ScreenshotImpl.java [206:215]


  private static void assertNotTooLarge(int width, int height, RecordBuilderImpl recordBuilder) {
    final long maxPixels = recordBuilder.getMaxPixels();
    if (maxPixels <= 0) {
      return;
    }
    if (((long) width) * height > maxPixels) {
      throw new IllegalStateException(
          String.format(Locale.US, "View too large: (%d, %d)", width, height));
    }
  }