Revert "[Tizen] Fix to avoid empty texture rendering issue"
authorJiyun Yang <ji.yang@samsung.com>
Mon, 14 Jan 2019 05:43:47 +0000 (14:43 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Mon, 14 Jan 2019 05:43:47 +0000 (14:43 +0900)
This reverts commit 2399758ad1f10b13e542f63bbcb36b9ef027be17.

dali-toolkit/internal/visuals/texture-manager-impl.cpp

index a1e9d8c..1ea95a9 100644 (file)
@@ -242,21 +242,7 @@ TextureSet TextureManager::LoadTexture(
       }
 
       TextureManager::LoadState loadState = GetTextureStateInternal( textureId );
-      switch (loadState)
-      {
-        case TextureManager::NOT_STARTED :
-        case TextureManager::LOADING :
-        case TextureManager::LOAD_FAILED :
-        {
-          loadingStatus = true;
-          break;
-        }
-        default :
-        {
-          loadingStatus = false;
-          break;
-        }
-      }
+      loadingStatus = ( loadState == TextureManager::LOADING );
 
       if( loadState == TextureManager::UPLOADED )
       {