From: Eunki, Hong Date: Wed, 16 Apr 2025 05:34:40 +0000 (+0900) Subject: Make Control::CORNER_RADIUS didn't add uniform as default X-Git-Tag: dali_2.4.16~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F322804%2F4;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Make Control::CORNER_RADIUS didn't add uniform as default Change-Id: Icf30a207833ec1b382c00813efcf306a17246e34 Signed-off-by: Eunki, Hong --- diff --git a/dali-toolkit/devel-api/controls/control-devel.h b/dali-toolkit/devel-api/controls/control-devel.h index 3cb6c53775..b8764b629b 100644 --- a/dali-toolkit/devel-api/controls/control-devel.h +++ b/dali-toolkit/devel-api/controls/control-devel.h @@ -271,14 +271,16 @@ enum * @note By default, it is Vector::ZERO. * @note Applies to specific visuals inside the control. * @see Dali::Toolkit::DevelVisual::Property::Type::CORNER_RADIUS + * @note It will not create UniformMap internally. So this property don't be used at Render phase. */ - CORNER_RADIUS = ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX + 1000, + CORNER_RADIUS = ANIMATABLE_PROPERTY_WITHOUT_UNIFORM_REGISTRATION_START_INDEX, /** * @brief Whether the corner radius value is relative (percentage [0.0f to 0.5f] of the visual size) or absolute (in world units). * @details Name "viewCornerRadiusPolicy", type Property::INTEGER. * @see Policy::Type * @see Dali::Toolkit::DevelVisual::Property::Type::CORNER_RADIUS_POLICY + * @note It will not create UniformMap internally. So this property don't be used at Render phase. */ CORNER_RADIUS_POLICY, @@ -288,6 +290,7 @@ enum * @note By default, it is Vector::ZERO. * @note Applies to specific visuals inside the control. * @see Dali::Toolkit::DevelVisual::Property::Type::CORNER_SQUARENESS + * @note It will not create UniformMap internally. So this property don't be used at Render phase. */ CORNER_SQUARENESS, };