| 1249 | } |
| 1250 | |
| 1251 | const HnMaterialParameter* HnMaterialNetwork::GetParameter(HnMaterialParameter::ParamType Type, const pxr::TfToken& Name) const |
| 1252 | { |
| 1253 | for (const auto& Param : m_Parameters) |
| 1254 | { |
| 1255 | if (Param.Type == Type && Param.Name == Name) |
| 1256 | { |
| 1257 | return &Param; |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | return nullptr; |
| 1262 | } |
| 1263 | |
| 1264 | } // namespace USD |
| 1265 |
no outgoing calls
no test coverage detected