| 310 | } |
| 311 | |
| 312 | ArResolvedPath 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 | |
| 326 | std::string ImageProcessingResolverPlugin::CreateIdentifierFromURI( |
| 327 | const std::string& assetPath, const ArResolvedPath& anchorAssetPath) const |
nothing calls this directly
no outgoing calls
no test coverage detected