Searched refs:normalSizes (Results 1 – 1 of 1) sorted by relevance
185 Size[] normalSizes = configMap.getOutputSizes(format); in getOutputSizes() local188 if (normalSizes != null && slowSizes != null) { in getOutputSizes()189 allSizes = new Size[normalSizes.length + slowSizes.length]; in getOutputSizes()190 System.arraycopy(normalSizes, 0, allSizes, 0, normalSizes.length); in getOutputSizes()191 System.arraycopy(slowSizes, 0, allSizes, normalSizes.length, slowSizes.length); in getOutputSizes()192 } else if (normalSizes != null) { in getOutputSizes()193 allSizes = normalSizes; in getOutputSizes()