X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fvisual-base-data-impl.h;h=568af248e95d8a9fc57eeb835a1e2d7420115e5f;hp=2967b1d6cb30116d1ce3815d55c7e77e82bf2c95;hb=750fadba87bb959c9af32e89e3f1bc7af6cb6dd2;hpb=d0b0cfa4a44953be9af9128885eb6ef5d83a214e diff --git a/dali-toolkit/internal/visuals/visual-base-data-impl.h b/dali-toolkit/internal/visuals/visual-base-data-impl.h index 2967b1d..568af24 100644 --- a/dali-toolkit/internal/visuals/visual-base-data-impl.h +++ b/dali-toolkit/internal/visuals/visual-base-data-impl.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2022 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,7 +20,7 @@ // EXTERNAL INCLUDES #include -#include +#include // INTERNAL INCLUDES #include @@ -96,9 +96,9 @@ struct Base::Impl void UpdatePropertyMap(const Property::Map& map); /** - * Register or set the uniform properties onto the renderer + * Set the uniform properties onto the renderer */ - void RegisterUniforms(Renderer renderer, Toolkit::Direction::Type direction); + void SetUniforms(VisualRenderer renderer, Toolkit::Direction::Type direction); /** * Convert the control size and the transform attributes into the actual @@ -112,27 +112,27 @@ struct Base::Impl Vector4 mOffsetSizeMode; Toolkit::Align::Type mOrigin; Toolkit::Align::Type mAnchorPoint; - Property::Index mOffsetIndex; - Property::Index mSizeIndex; }; - Renderer mRenderer; + VisualRenderer mRenderer; CustomShader* mCustomShader; EventObserver* mEventObserver; ///< Allows controls to observe when the visual has events to notify std::string mName; Transform mTransform; Vector4 mMixColor; Size mControlSize; - float mCornerRadius; + float mBorderlineWidth; + Vector4 mBorderlineColor; + float mBorderlineOffset; + Vector4 mCornerRadius; float mCornerRadiusPolicy; int mDepthIndex; - Property::Index mMixColorIndex; - Property::Index mCornerRadiusIndex; - FittingMode mFittingMode; //< How the contents should fit the view + FittingMode mFittingMode; ///< How the contents should fit the view int mFlags; Toolkit::Visual::ResourceStatus mResourceStatus; const Toolkit::Visual::Type mType; - bool mNeedCornerRadius; + bool mAlwaysUsingBorderline : 1; ///< Whether we need the borderline in shader always. + bool mAlwaysUsingCornerRadius : 1; ///< Whether we need the corner radius in shader always. }; } // namespace Visual