Searched refs:FORMATS (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | YuvImageTest.java | 60 private static final int[] FORMATS = { ImageFormat.NV21, ImageFormat.YUY2 }; field in YuvImageTest 101 for (int i = 0; i < FORMATS.length; ++i) { in testYuvImage() 103 new YuvImage(yuv, FORMATS[i], width, height, null); in testYuvImage() 111 for (int i = 0; i < FORMATS.length; ++i) { in testYuvImage() 114 if (FORMATS[i] == ImageFormat.NV21) { in testYuvImage() 116 } else if (FORMATS[i] == ImageFormat.YUY2) { in testYuvImage() 121 image = new YuvImage(yuv, FORMATS[i], width, height, null); in testYuvImage() 134 new YuvImage(new byte[100 * 100 * 2], FORMATS[0], -1, 100, null); in testYuvImageNegativeWidth() 139 new YuvImage(new byte[100 * 100 * 2], FORMATS[0], 100, -1, null); in testYuvImageNegativeHeight() 144 new YuvImage(null, FORMATS[0], 100, 100, null); in testYuvImageNullArray() [all …]
|