Home
last modified time | relevance | path

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

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DImageProcessingTest.java125 byte[] srcData = new byte[w * h * 4]; in testBlend()
130 buildSrc(srcData, w, h); in testBlend()
132 src.copyFromUnchecked(srcData); in testBlend()
180 String name = javaBlend(i, srcData, dstData, 0, w, 0, h, w); in testBlend()
201 buildSrc(srcData, w, h); in testBlend()
203 src.copyFromUnchecked(srcData); in testBlend()
250 String name = javaBlend(i, srcData, dstData, xStart, xEnd, yStart, yEnd, w); in testBlend()
283 public void buildSrc(byte[] srcData, int width, int height) { in buildSrc() argument
284 for (int i = 0; i < srcData.length / 4; i++) { in buildSrc()
291 srcData[i * 4 + 0] = (byte) d; // red in buildSrc()
[all …]