Lines Matching refs:pathComp
1141 …(glu::TypeComponentVector::const_iterator pathComp = accessPath.begin(); pathComp != accessPath.en… in getAPIName() local
1143 if (pathComp->type == glu::VarTypeComponent::STRUCT_MEMBER) in getAPIName()
1145 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); in getAPIName()
1148 name << "." << structPtr->getMember(pathComp->index).getName(); in getAPIName()
1150 else if (pathComp->type == glu::VarTypeComponent::ARRAY_ELEMENT) in getAPIName()
1152 if (pathComp == accessPath.begin() || (pathComp+1) == accessPath.end()) in getAPIName()
1155 name << "[" << pathComp->index << "]"; in getAPIName()
1184 …(glu::TypeComponentVector::const_iterator pathComp = accessPath.begin(); pathComp != accessPath.en… in getShaderName() local
1186 if (pathComp->type == glu::VarTypeComponent::STRUCT_MEMBER) in getShaderName()
1188 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); in getShaderName()
1191 name << "." << structPtr->getMember(pathComp->index).getName(); in getShaderName()
1193 else if (pathComp->type == glu::VarTypeComponent::ARRAY_ELEMENT) in getShaderName()
1194 name << "[" << pathComp->index << "]"; in getShaderName()