Home
last modified time | relevance | path

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

/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java3161 int srcRowByteCount = srcRowStride; in imageCopy() local
3172 srcRowByteCount = Math.min(srcRowByteCount, srcBuffer.remaining()); in imageCopy()
3175 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()
3187 if (srcRowByteCount > remainingBytes) { in imageCopy()
3188 srcRowByteCount = remainingBytes; in imageCopy()
3195 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()