DSRenderViewDaliImpl: set the default position to (0, 0, 0). 13/241813/1
authorJoonbum Ko <joonbum.ko@samsung.com>
Thu, 13 Aug 2020 04:31:16 +0000 (13:31 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Thu, 20 Aug 2020 10:11:35 +0000 (19:11 +0900)
Change-Id: Ife301798923d452e5a9c2e14e7f76ec6847dd266
Signed-off-by: Joonbum Ko <joonbum.ko@samsung.com>
src/DSRender/DSRenderViewDaliImpl.cpp

index 4940a3b..82d1cf3 100644 (file)
@@ -95,10 +95,10 @@ DSRenderViewDaliImpl::DSRenderViewDaliImpl(std::shared_ptr<DSWindow> window, Dal
 
        __textureViewActor.AddRenderer(__renderer);
 
-       // belows for testing //
+       // Actor's default properties
        __textureViewActor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT);
        __textureViewActor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT);
-       __textureViewActor.SetProperty(Actor::Property::POSITION, Vector3( 0.0f, 100.f, 0.0f ));
+       __textureViewActor.SetProperty(Actor::Property::POSITION, Vector3( 0.0f, 0.0f, 0.0f ));
 
        offscreenWindow.Add(__textureViewActor);