Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DRawConverter.java282 /*out*/Bitmap argbOutput) { in convertToSRGB() argument
300 shadingMap, outputOffsetX, outputOffsetY, argbOutput); in convertToSRGB()
311 int outputOffsetX, int outputOffsetY, /*out*/Bitmap argbOutput) { in convertToSRGB() argument
314 if (argbOutput == null || rs == null || rawImageInput == null) { in convertToSRGB()
317 if (argbOutput.getConfig() != Bitmap.Config.ARGB_8888) { in convertToSRGB()
330 int outWidth = argbOutput.getWidth(); in convertToSRGB()
331 int outHeight = argbOutput.getHeight(); in convertToSRGB()
424 Allocation output = Allocation.createFromBitmap(rs, argbOutput); in convertToSRGB()
466 output.copyTo(argbOutput); // Force RS sync with bitmap (does not do an extra copy). in convertToSRGB()