Remove deprecated APIs in Tizen 3.0
[platform/core/uifw/dali-core.git] / dali / public-api / actors / draw-mode.h
index 86e9de8..33fb9ff 100644 (file)
@@ -23,7 +23,7 @@
 namespace Dali
 {
 /**
- * @addtogroup dali-core-actors
+ * @addtogroup dali_core_actors
  * @{
  */
 
@@ -31,15 +31,15 @@ namespace DrawMode
 {
 
 /**
- * @brief How the actor and it's children will be drawn.
+ * @brief Enumeration for the instance of how the actor and it's children will be drawn.
  *
+ * @SINCE_1_0.0
  * @see Dali::Actor::SetDrawMode()
  */
 enum Type
 {
-  NORMAL     = 0, ///< binary 00. The default draw-mode
-  OVERLAY_2D = 1, ///< binary 01. Draw the actor and its children as an overlay
-  STENCIL    = 3  ///< binary 11. Draw the actor and its children into the stencil buffer
+  NORMAL     = 0, ///< @brief binary 00. The default draw-mode @SINCE_1_0.0
+  OVERLAY_2D = 1  ///< @brief binary 01. Draw the actor and its children as an overlay @SINCE_1_0.0
 };
 
 } // namespace DrawMode