MCPcopy Create free account
hub / github.com/Autodesk/Aurora / _Resolve

Method _Resolve

Libraries/ImageProcessingResolver/Resolver.cpp:312–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312ArResolvedPath ImageProcessingResolverPlugin::_Resolve(const std::string& assetPath) const
313{
314
315 // If this is a processed URI path, generated by _CreateIdentifier, just return
316 // it unaltered.
317 if (assetPath.find(assetPathPrefix) != std::string::npos)
318 {
319 return ArResolvedPath(assetPath);
320 }
321
322 ArResolvedPath res = ArDefaultResolver::_Resolve(assetPath);
323 return res;
324}
325
326std::string ImageProcessingResolverPlugin::CreateIdentifierFromURI(
327 const std::string& assetPath, const ArResolvedPath& anchorAssetPath) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected