| 284 | //----------------------------------------------------------------------------- |
| 285 | |
| 286 | void AssetBase::refreshAsset(void) |
| 287 | { |
| 288 | // Debug Profiling. |
| 289 | PROFILE_SCOPE(AssetBase_RefreshAsset); |
| 290 | |
| 291 | // Finish if asset is not owned or is not initialized. |
| 292 | if (mpOwningAssetManager == NULL || !mAssetInitialized) |
| 293 | return; |
| 294 | |
| 295 | // Yes, so refresh the asset via the asset manager. |
| 296 | mpOwningAssetManager->refreshAsset(getAssetId()); |
| 297 | } |
| 298 | |
| 299 | //----------------------------------------------------------------------------- |
| 300 |
no outgoing calls
no test coverage detected