Lines Matching refs:pathComp
1052 …(glu::TypeComponentVector::const_iterator pathComp = accessPath.begin(); pathComp != accessPath.en… in getAPIName() local
1054 if (pathComp->type == glu::VarTypeComponent::STRUCT_MEMBER) in getAPIName()
1056 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); in getAPIName()
1059 name << "." << structPtr->getMember(pathComp->index).getName(); in getAPIName()
1061 else if (pathComp->type == glu::VarTypeComponent::ARRAY_ELEMENT) in getAPIName()
1063 if (pathComp == accessPath.begin() || (pathComp+1) == accessPath.end()) in getAPIName()
1066 name << "[" << pathComp->index << "]"; in getAPIName()
1093 …(glu::TypeComponentVector::const_iterator pathComp = accessPath.begin(); pathComp != accessPath.en… in getShaderName() local
1095 if (pathComp->type == glu::VarTypeComponent::STRUCT_MEMBER) in getShaderName()
1097 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); in getShaderName()
1100 name << "." << structPtr->getMember(pathComp->index).getName(); in getShaderName()
1102 else if (pathComp->type == glu::VarTypeComponent::ARRAY_ELEMENT) in getShaderName()
1103 name << "[" << pathComp->index << "]"; in getShaderName()