Lines Matching refs:inputNdx
847 for (int inputNdx = 0; inputNdx < m_spec.numInputs; inputNdx++) in setupShaderData() local
849 const ShaderValue& v = m_spec.inputs[inputNdx]; in setupShaderData()
863 switch ((rowNdx + inputNdx) % 4) in setupShaderData()
875 m_userAttribTransforms[inputNdx] = attribMatrix; in setupShaderData()
1952 for (int inputNdx = 0; inputNdx < MAX_INPUTS; inputNdx++) in init() local
1954 …const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : fun… in init()
1955 …const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcIn… in init()
1976 if (inputNdx > 0) in init()
1981 …if (inputNdx == 0 || prevInDataType != curInDataType) // \note Only write input type to case name … in init()
1988 if (inputNdx != 0) in init()
1996 shaderOp += "in" + de::toString(inputNdx); in init()
2005 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix)) in init()
2008 …shaderOp += inputNdx == 0 ? "res" : "in" + de::toString(inputNdx); // \note in0 has already been a… in init()
2167 for (int inputNdx = 0; inputNdx < s_sequenceCases[caseNdx].numInputs; inputNdx++) in init() local
2169 DataType type = s_sequenceCases[caseNdx].inputTypes[inputNdx]; in init()
2173 shaderSpec.inputs[inputNdx] = ShaderValue(type, rangeMin, rangeMax); in init()