Home | History | Annotate | Download | only in renderscript

Lines Matching refs:Element

32      * Supported elements types are {@link Element#U8}, {@link
33 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
34 * {@link Element#F32}, {@link Element#F32_2}, {@link
35 * Element#F32_3}, and {@link Element#F32_4}.
45 * @param e Element type for intputs and outputs
49 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e) {
51 if (!e.isCompatible(Element.U8(rs)) &&
52 !e.isCompatible(Element.U8_2(rs)) &&
53 !e.isCompatible(Element.U8_3(rs)) &&
54 !e.isCompatible(Element.U8_4(rs)) &&
55 !e.isCompatible(Element.F32(rs)) &&
56 !e.isCompatible(Element.F32_2(rs)) &&
57 !e.isCompatible(Element.F32_3(rs)) &&
58 !e.isCompatible(Element.F32_4(rs))) {
59 throw new RSIllegalArgumentException("Unsuported element type.");
70 * Must match the element type supplied during create.
104 * @param aout Output allocation. Must match creation element
115 * @param aout Output allocation. Must match creation element