Searched refs:FORMATS (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | YuvImageTest.java | 71 private static final int[] FORMATS = { ImageFormat.NV21, ImageFormat.YUY2, field in YuvImageTest 114 for (int i = 0; i < FORMATS.length; ++i) { in testYuvImage() 116 new YuvImage(yuv, FORMATS[i], width, height, null); in testYuvImage() 124 for (int i = 0; i < FORMATS.length; ++i) { in testYuvImage() 127 switch (FORMATS[i]) { in testYuvImage() 145 image = new YuvImage(yuv, FORMATS[i], width, height, null); in testYuvImage() 157 image = new YuvImage(yuv, FORMATS[0], width, height, null, null); in testYuvImage() 166 new YuvImage(new byte[100 * 100 * 2], FORMATS[0], -1, 100, null); in testYuvImageNegativeWidth() 171 new YuvImage(new byte[100 * 100 * 2], FORMATS[0], 100, -1, null); in testYuvImageNegativeHeight() 176 new YuvImage(null, FORMATS[0], 100, 100, null); in testYuvImageNullArray()
|