Searched defs:outNdx (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp684 static int getAttributeIndex (deUint32 primitiveType, int numInputs, int outNdx) argument
688 case GL_TRIANGLES: return outNdx;
689 case GL_LINES: return outNdx;
690 case GL_POINTS: return outNdx;
694 int triNdx = outNdx/3;
695 int vtxNdx = outNdx%3;
700 return (outNdx%3 != 0) ? (outNdx/3 + outNdx%3) : 0;
703 return outNdx/
[all...]
H A Des3fFragmentOutputTests.cpp179 for (int outNdx = 0; outNdx < (int)outputs.size(); outNdx++)
181 const FragmentOutput& output = outputs[outNdx];
193 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << "_" << elemNdx << ";\n"
194 << interp << " out " << interpPrec << " " << typeName << " var" << outNdx << "_" << elemNdx << ";\n";
195 frag << interp << " in " << interpPrec << " " << typeName << " var" << outNdx << "_" << elemNdx << ";\n";
197 frag << "layout(location = " << output.location << ") out " << outputPrec << " " << typeName << " out" << outNdx << "[" << output.arrayLength << "];\n";
201 vtx << "in " << interpPrec << " " << typeName << " in" << outNdx << ";\n"
202 << interp << " out " << interpPrec << " " << typeName << " var" << outNdx << ";\ local
229 vtx << "\\tvar" << outNdx << " = in" << outNdx << ";\\n"; local
230 frag << "\\tout" << outNdx << " = var" << outNdx << ";\\n"; local
[all...]

Completed in 708 milliseconds