HomeSort by relevance Sort by last modified time
    Searched refs:constInput (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramVertexTest.java 92 ProgramVertex buildShader(Element[] input, Allocation[] constInput, String shader) {
100 if (constInput != null) {
101 for (int i = 0; i < constInput.length; i++) {
104 bpb.addConstant(constInput[i].getType());
111 if (constInput != null) {
112 for (int i = 0; i < constInput.length; i++) {
113 pv.bindConstants(constInput[i], i);
116 p.bindConstants(constInput[i], i);
186 Allocation[] constInput = new Allocation[1];
188 constInput[0] = mConstMatrix
    [all...]
ProgramFragmentTest.java 81 ProgramFragment buildShader(Allocation[] textures, Allocation[] constInput, String shader) {
96 if (constInput != null) {
97 for (int i = 0; i < constInput.length; i++) {
98 bpb.addConstant(constInput[i].getType());
105 if (constInput != null) {
106 for (int i = 0; i < constInput.length; i++) {
107 pf.bindConstants(constInput[i], i);
110 p.bindConstants(constInput[i], i);
164 Allocation[] constInput = new Allocation[1];
165 constInput[0] = mConstMatrix
    [all...]
  /frameworks/rs/
rsProgramFragment.cpp 107 ObjectBaseRef<const Element> constInput = builder.create(rsc);
109 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0);
rsProgramVertex.cpp 182 ObjectBaseRef<const Element> constInput = constBuilder.create(rsc);
191 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0);
rsFont.cpp 508 ObjectBaseRef<const Element> constInput = builder.create(mRSC);
510 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false, 0);

Completed in 445 milliseconds