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.java2541 int srcRowByteCount = srcRowStride; in imageCopy() local
2552 srcRowByteCount = Math.min(srcRowByteCount, srcBuffer.remaining()); in imageCopy()
2555 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()
2567 if (srcRowByteCount > remainingBytes) { in imageCopy()
2568 srcRowByteCount = remainingBytes; in imageCopy()
2575 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()