X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Fnodes%2Fnode.h;h=fc29fc90d1e06f75ff14150d66663d2f09309fc8;hb=3a0e774eed7e1097fe568e7a905828bb61972e7a;hp=07ce46261d368446c4ee728f9b8f495b7dfe63ef;hpb=c419689d2ee590bceab57b1f8786d64ee0536520;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/nodes/node.h b/dali/internal/update/nodes/node.h index 07ce462..fc29fc9 100644 --- a/dali/internal/update/nodes/node.h +++ b/dali/internal/update/nodes/node.h @@ -622,6 +622,9 @@ public: { if(mTransformManagerData.Id() != INVALID_TRANSFORM_ID) { + DALI_LOG_RELEASE_INFO("id = %d, data = %p, manager = %p, id = %d, mSize data = %p\n", + mId, &mTransformManagerData, mTransformManagerData.mManager, mTransformManagerData.mId, mSize.mTxManagerData); + return mSize.Get(0); } @@ -730,7 +733,7 @@ public: mTransparent = transparent; } - bool GetTransparent() const + bool IsTransparent() const { return mTransparent; } @@ -964,7 +967,7 @@ protected: bool mIsRoot : 1; ///< True if the node cannot have a parent bool mIsLayer : 1; ///< True if the node is a layer bool mPositionUsesAnchorPoint : 1; ///< True if the node should use the anchor-point when calculating the position - bool mTransparent : 1; + bool mTransparent : 1; ///< True if this node is transparent. This value do not affect children. // Changes scope, should be at end of class DALI_LOG_OBJECT_STRING_DECLARATION;