| 130 | } |
| 131 | |
| 132 | static Exec_InputKeyVectorConstRefPtr |
| 133 | _MakeInputKeyVector(const ExecValueKey &valueKey) |
| 134 | { |
| 135 | return TfMakeDelegatedCountPtr<const Exec_InputKeyVector>( |
| 136 | std::initializer_list<Exec_InputKey> { |
| 137 | Exec_InputKey { |
| 138 | EfLeafTokens->in, |
| 139 | valueKey.GetComputationName(), |
| 140 | /* disambiguatingId */ TfToken(), |
| 141 | TfType(), |
| 142 | ExecProviderResolution { |
| 143 | SdfPath::ReflexiveRelativePath(), |
| 144 | ExecProviderResolution::DynamicTraversal::Local |
| 145 | }, |
| 146 | false, /* fallsBackToDispatched */ |
| 147 | false /* optional */ |
| 148 | } |
| 149 | } |
| 150 | ); |
| 151 | } |
| 152 | |
| 153 | PXR_NAMESPACE_CLOSE_SCOPE |