Home
last modified time | relevance | path

Searched refs:nameToIndex (Results 1 – 2 of 2) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
Dreflection.cpp108 TReflection::TNameToIndex::const_iterator it = reflection.nameToIndex.find(name); in addAttribute()
109 if (it == reflection.nameToIndex.end()) { in addAttribute()
110 reflection.nameToIndex[name] = (int)reflection.indexToAttribute.size(); in addAttribute()
248 TReflection::TNameToIndex::const_iterator it = reflection.nameToIndex.find(name); in blowUpActiveAggregate()
249 if (it == reflection.nameToIndex.end()) { in blowUpActiveAggregate()
250 reflection.nameToIndex[name] = (int)reflection.indexToUniform.size(); in blowUpActiveAggregate()
351 TReflection::TNameToIndex::const_iterator it = reflection.nameToIndex.find(name); in addBlockName()
352 if (reflection.nameToIndex.find(name) == reflection.nameToIndex.end()) { in addBlockName()
354 reflection.nameToIndex[name] = blockIndex; in addBlockName()
Dreflection.h142 TNameToIndex::const_iterator it = nameToIndex.find(name); in getIndex()
143 if (it == nameToIndex.end()) in getIndex()
169 …TNameToIndex nameToIndex; // maps names to indexes; can hold all types of data: uniform/buf… variable