[Tizen] Partial rendering rotation does not work. 81/239681/3
authorJoogab Yun <joogab.yun@samsung.com>
Wed, 29 Jul 2020 02:18:05 +0000 (11:18 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Wed, 29 Jul 2020 02:30:31 +0000 (11:30 +0900)
This is a temporary patch. When windows is rotated, Dali operates in full rendering.
This patch should be fixed.

Change-Id: I5e29b44046106f47006479419781633c20517ef1

dali/internal/render/common/render-manager.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index ebffbd6..fb265b1
@@ -632,6 +632,12 @@ void RenderManager::PreRender( Integration::Scene& scene, std::vector<Rect<int>>
     return;
   }
 
+  // @TODO We need to do partial rendering rotation.
+  if( mImpl->defaultSurfaceOrientation != 0 )
+  {
+    return;
+  }
+
   class DamagedRectsCleaner
   {
   public: