[Tizen] Add temporaty log to node
[platform/core/uifw/dali-core.git] / dali / internal / update / nodes / node.h
index 07ce462..fc29fc9 100644 (file)
@@ -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;