From ec9e5cf0a63bdb9b48a307fe2f7dd2ee14514457 Mon Sep 17 00:00:00 2001 From: Tom Robinson Date: Mon, 18 Apr 2016 15:16:17 +0100 Subject: [PATCH] Deprecated STENCIL DrawMode Will be replaced by separate ClippingMode enum Change-Id: Ibaf418574ec04fb147c3086007e97a33cabcd4a0 --- dali/public-api/actors/draw-mode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dali/public-api/actors/draw-mode.h b/dali/public-api/actors/draw-mode.h index c1efd7c..8e0ef4b 100644 --- a/dali/public-api/actors/draw-mode.h +++ b/dali/public-api/actors/draw-mode.h @@ -38,9 +38,9 @@ namespace DrawMode */ enum Type { - NORMAL = 0, ///< binary 00. The default draw-mode @SINCE_1_0.0 - OVERLAY_2D = 1, ///< binary 01. Draw the actor and its children as an overlay @SINCE_1_0.0 - STENCIL = 3 ///< binary 11. Draw the actor and its children into the stencil buffer @SINCE_1_0.0 + 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 + STENCIL = 3 ///< @DEPRECATED_1_1.31 Will be replaced by separate ClippingMode enum @brief binary 11. Draw the actor and its children into the stencil buffer @SINCE_1_0.0 }; } // namespace DrawMode -- 2.7.4