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

  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 401 BitmapFactory.Options bmpOptions = new BitmapFactory.Options();
402 bmpOptions.inJustDecodeBounds = true;
403 BitmapFactory.decodeByteArray(mJpegData, 0, mJpegData.length, bmpOptions);
405 assertEquals(pictureSize.width, bmpOptions.outWidth);
406 assertEquals(pictureSize.height, bmpOptions.outHeight);
408 int realArea = bmpOptions.outWidth * bmpOptions.outHeight;
410 bmpOptions.outWidth + " x " + bmpOptions.outHeight +
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java     [all...]

Completed in 79 milliseconds