- Universal Guide Thumbnail is displayed abnormally.
Change-Id: I4ed69b0e8682aa295c00e8f32fe9a9880edca68e
}
TextureManager::LoadState loadState = GetTextureStateInternal( textureId );
- loadingStatus = ( loadState == TextureManager::LOADING );
+ switch (loadState)
+ {
+ case TextureManager::NOT_STARTED :
+ case TextureManager::LOADING :
+ case TextureManager::LOAD_FAILED :
+ {
+ loadingStatus = true;
+ break;
+ }
+ default :
+ {
+ loadingStatus = false;
+ break;
+ }
+ }
if( loadState == TextureManager::UPLOADED )
{