Lines Matching refs:inputNdx
568 for (int inputNdx = 0; inputNdx < spec.numInputs; inputNdx++) in ShaderOperatorCase() local
570 const ShaderValue& v = spec.inputs[inputNdx]; in ShaderOperatorCase()
582 switch ((rowNdx + inputNdx) % 4) in ShaderOperatorCase()
594 m_userAttribTransforms[inputNdx] = attribMatrix; in ShaderOperatorCase()
1312 for (int inputNdx = 0; inputNdx < MAX_INPUTS; inputNdx++) in init() local
1314 …const Value& v = (inputNdx == 0) ? funcInfo.input0 : (inputNdx == 1) ? funcInfo.input1 : funcIn… in init()
1315 …const Value& prevV = (inputNdx == 1) ? funcInfo.input0 : (inputNdx == 2) ? funcInfo.input1 : fun… in init()
1328 if (inputNdx > 0) in init()
1333 …if (inputNdx == 0 || isScalarType(prevV.valueType) != isScalarType(v.valueType)) // \note Only wri… in init()
1340 if (inputNdx != 0) in init()
1348 shaderOp += "in" + de::toString(inputNdx); in init()
1357 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix)) in init()
1360 …shaderOp += inputNdx == 0 ? "res" : "in" + de::toString(inputNdx); // \note in0 has already been a… in init()
1510 for (int inputNdx = 0; inputNdx < s_sequenceCases[caseNdx].numInputs; inputNdx++) in init() local
1512 DataType type = s_sequenceCases[caseNdx].inputTypes[inputNdx]; in init()
1516 shaderSpec.inputs[inputNdx] = ShaderValue(type, rangeMin, rangeMax); in init()