Lines Matching refs:vtxNdx
50 ValueAccess getValue (const VariableType& type, int vtxNdx);
51 ConstValueAccess getValue (const VariableType& type, int vtxNdx) const;
62 ValueAccess VaryingStorage::getValue (const VariableType& type, int vtxNdx) in getValue() argument
64 return ValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]); in getValue()
67 ConstValueAccess VaryingStorage::getValue (const VariableType& type, int vtxNdx) const in getValue()
69 return ConstValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]); in getValue()
243 for (int vtxNdx = packetStart; vtxNdx < packetEnd; vtxNdx++) in execute() local
245 int y = (vtxNdx/gridVtxWidth); in execute()
246 int x = vtxNdx - y*gridVtxWidth; in execute()
250 interpolateVertexInput(access, vtxNdx-packetStart, input->getValueRange(), xf, yf); in execute()
268 for (int vtxNdx = packetStart; vtxNdx < packetEnd; vtxNdx++) in execute() local
270 ValueAccess varyingAccess = dst->getValue(output->getType(), vtxNdx); in execute()
271 copyVarying(varyingAccess, access, vtxNdx-packetStart); in execute()