Home
last modified time | relevance | path

Searched refs:normalSizes (Results 1 – 1 of 1) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
DItsUtils.java131 Size[] normalSizes = configMap.getOutputSizes(format); in getOutputSizes() local
134 if (normalSizes != null && slowSizes != null) { in getOutputSizes()
135 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()
136 System.arraycopy(normalSizes, 0, allSizes, 0, in getOutputSizes()
137 normalSizes.length); in getOutputSizes()
138 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, in getOutputSizes()
140 } else if (normalSizes != null) { in getOutputSizes()
141 allSizes = normalSizes; in getOutputSizes()