Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:numVertices

47 							VaryingStorage		(const VariableType& type, int numVertices);
57 VaryingStorage::VaryingStorage (const VariableType& type, int numVertices)
58 : m_value(type.getScalarSize()*numVertices)
75 VaryingStore (int numVertices);
85 VaryingStore::VaryingStore (int numVertices)
86 : m_numVertices(numVertices)
215 int numVertices = gridVtxWidth*gridVtxHeight;
217 VaryingStore varyingStore(numVertices);
222 int numPackets = numVertices + ((numVertices%EXEC_VEC_WIDTH) ? 1 : 0);
235 int packetEnd = deMin32((packetNdx+1)*EXEC_VEC_WIDTH, numVertices);