Home | History | Annotate | Download | only in renderscript

Lines Matching refs:Allocation

21  * specified radius to all elements of an allocation.
27 private Allocation mInput;
34 * Create an intrinsic for applying a blur to an allocation. The
59 * @param ain The input allocation
61 public void setInput(Allocation ain) {
63 throw new RSIllegalArgumentException("Input set to a 1D Allocation");
85 * allocation.
87 * @param aout Output allocation. Must match creation element
90 public void forEach(Allocation aout) {
92 throw new RSIllegalArgumentException("Output is a 1D Allocation");
94 forEach(0, (Allocation) null, aout, null);
99 * allocation.
101 * @param aout Output allocation. Must match creation element
105 public void forEach(Allocation aout, Script.LaunchOptions opt) {
107 throw new RSIllegalArgumentException("Output is a 1D Allocation");
109 forEach(0, (Allocation) null, aout, null, opt);