Lines Matching defs:ndx
72 for (int ndx = 0; ndx < numShared; ndx++)
75 for (int ndx = 0; ndx < numVtxBlocks; ndx++)
78 for (int ndx = 0; ndx < numFragBlocks; ndx++)
117 for (int ndx = 0; ndx < numUniforms; ndx++)
123 static std::string genName (char first, char last, int ndx)
128 while (ndx > alphabetLen)
130 str.insert(str.begin(), (char)(first + ((ndx-1)%alphabetLen)));
131 ndx = ((ndx-1) / alphabetLen);
134 str.insert(str.begin(), (char)(first + (ndx%(alphabetLen+1)) - 1));
170 for (int ndx = 0; ndx < numMembers; ndx++)
177 for (int ndx = 0; ndx < numMembers; ndx++)
184 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx], flags);