Home
last modified time | relevance | path

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

/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSBlendTest.java54 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSBlend() local
56 rsInput.copyFromUnchecked(byteAlloc); in testRSBlend()
63 blend.forEachAdd(rsInput, rsOutput); in testRSBlend()
66 blend.forEachClear(rsInput, rsOutput); in testRSBlend()
69 blend.forEachDst(rsInput, rsOutput); in testRSBlend()
72 blend.forEachDstAtop(rsInput, rsOutput); in testRSBlend()
75 blend.forEachDstIn(rsInput, rsOutput); in testRSBlend()
78 blend.forEachDstOut(rsInput, rsOutput); in testRSBlend()
81 blend.forEachDstOver(rsInput, rsOutput); in testRSBlend()
84 blend.forEachMultiply(rsInput, rsOutput); in testRSBlend()
[all …]
DRSColorMatrixTest.java57 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSColorMatrix0() local
59 rsInput.copyFromUnchecked(byteAlloc); in testRSColorMatrix0()
64 cm.forEach(rsInput, rsOutput); in testRSColorMatrix0()
71 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSColorMatrix0()
88 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSColorMatrix1() local
90 rsInput.copyFromUnchecked(byteAlloc); in testRSColorMatrix1()
94 cm.forEach(rsInput, rsOutput); in testRSColorMatrix1()
101 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSColorMatrix1()
122 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSColorMatrix2() local
124 rsInput.copyFromUnchecked(byteAlloc); in testRSColorMatrix2()
[all …]
DRSBlurTest.java46 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSBlurOneChannel() local
48 rsInput.copyFromUnchecked(byteAlloc); in testRSBlurOneChannel()
50 blur.setInput(rsInput); in testRSBlurOneChannel()
59 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSBlurOneChannel()
75 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSBlurFourChannels() local
77 rsInput.copyFromUnchecked(byteAlloc); in testRSBlurFourChannels()
79 blur.setInput(rsInput); in testRSBlurFourChannels()
88 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSBlurFourChannels()
DRSConvolveTest.java57 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testConvolve3x3() local
59 rsInput.copyFromUnchecked(byteAlloc); in testConvolve3x3()
61 convolve.setInput(rsInput); in testConvolve3x3()
70 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testConvolve3x3()
114 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testConvolve5x5() local
116 rsInput.copyFromUnchecked(byteAlloc); in testConvolve5x5()
118 convolve.setInput(rsInput); in testConvolve5x5()
127 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testConvolve5x5()
DRSLUTTest.java46 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSLUT() local
48 rsInput.copyFromUnchecked(byteAlloc); in testRSLUT()
56 lut.forEach(rsInput, rsOutput); in testRSLUT()
63 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSLUT()
DRS3DLUTTest.java54 Allocation rsInput = Allocation.createTyped(mRS, build.create()); in testRSLUT() local
56 rsInput.copyFromUnchecked(byteAlloc); in testRSLUT()
67 lut.forEach(rsInput, rsOutput); in testRSLUT()
74 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testRSLUT()
DRSResizeTest.java45 Allocation rsInput = makeAllocation(w, h, e); in testResize() local
58 rsInput.copyFromUnchecked(byteAlloc); in testResize()
65 rsInput.copyFromUnchecked(floatAlloc); in testResize()
75 resize.setInput(rsInput); in testResize()
90 mVerify.invoke_verify(rsOutput, rsCppOutput, rsInput); in testResize()