Home | History | Annotate | Download | only in randomshaders

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)
64 return ValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
67 ConstValueAccess VaryingStorage::getValue (const VariableType& type, int vtxNdx) const
69 return ConstValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
243 for (int vtxNdx = packetStart; vtxNdx < packetEnd; vtxNdx++)
245 int y = (vtxNdx/gridVtxWidth);
246 int x = vtxNdx - y*gridVtxWidth;
250 interpolateVertexInput(access, vtxNdx-packetStart, input->getValueRange(), xf, yf);
268 for (int vtxNdx = packetStart; vtxNdx < packetEnd; vtxNdx++)
270 ValueAccess varyingAccess = dst->getValue(output->getType(), vtxNdx);
271 copyVarying(varyingAccess, access, vtxNdx-packetStart);