Lines Matching refs:rs
33 ProgramVertexFixedFunction(long id, RenderScript rs) { in ProgramVertexFixedFunction() argument
34 super(id, rs); in ProgramVertexFixedFunction()
54 public InternalBuilder(RenderScript rs) { in InternalBuilder() argument
55 super(rs); in InternalBuilder()
126 public Builder(RenderScript rs) { in Builder() argument
127 mRS = rs; in Builder()
140 static Type getConstantInputType(RenderScript rs) { in getConstantInputType() argument
141 Element.Builder b = new Element.Builder(rs); in getConstantInputType()
142 b.add(Element.MATRIX4X4(rs), "MV"); in getConstantInputType()
143 b.add(Element.MATRIX4X4(rs), "P"); in getConstantInputType()
144 b.add(Element.MATRIX4X4(rs), "TexMatrix"); in getConstantInputType()
145 b.add(Element.MATRIX4X4(rs), "MVP"); in getConstantInputType()
147 Type.Builder typeBuilder = new Type.Builder(rs, b.create()); in getConstantInputType()
225 public Constants(RenderScript rs) { in Constants() argument
226 Type constInputType = ProgramVertexFixedFunction.Builder.getConstantInputType(rs); in Constants()
227 mAlloc = Allocation.createTyped(rs, constInputType); in Constants()