Cleanup: Improve function name for asset identifier creation

I find this a bit more explanatory/clear.
This commit is contained in:
Julian Eisel 2022-12-01 11:41:04 +01:00
parent 5c580ff457
commit 1a2e2dcddc
2 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ class AssetLibrary {
* Create an asset identifier from the root path of this asset library and the given relative
* asset path (relative to the asset library root directory).
*/
AssetIdentifier derive_asset_identifier(StringRef relative_asset_path);
AssetIdentifier asset_identifier_from_library(StringRef relative_asset_path);
StringRefNull root_path() const;

View File

@ -152,13 +152,13 @@ AssetRepresentation &AssetLibrary::add_external_asset(StringRef relative_asset_p
StringRef name,
std::unique_ptr<AssetMetaData> metadata)
{
AssetIdentifier identifier = derive_asset_identifier(relative_asset_path);
AssetIdentifier identifier = asset_identifier_from_library(relative_asset_path);
return asset_storage_->add_external_asset(std::move(identifier), name, std::move(metadata));
}
AssetRepresentation &AssetLibrary::add_local_id_asset(StringRef relative_asset_path, ID &id)
{
AssetIdentifier identifier = derive_asset_identifier(relative_asset_path);
AssetIdentifier identifier = asset_identifier_from_library(relative_asset_path);
return asset_storage_->add_local_id_asset(std::move(identifier), id);
}
@ -215,7 +215,7 @@ void AssetLibrary::on_blend_save_post(struct Main *main,
}
}
AssetIdentifier AssetLibrary::derive_asset_identifier(StringRef relative_asset_path)
AssetIdentifier AssetLibrary::asset_identifier_from_library(StringRef relative_asset_path)
{
return AssetIdentifier(root_path_, relative_asset_path);
}