Updates for const->constexpr
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / filters / spread-filter.h
1 #ifndef DALI_TOOLKIT_INTERNAL_SPREAD_FILTER_H
2 #define DALI_TOOLKIT_INTERNAL_SPREAD_FILTER_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/render-tasks/render-task.h>
23
24 // INTERNAL INCLUDES
25 #include "image-filter.h"
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Internal
34 {
35
36 /**
37  * A spread/thicken filter. Expands an image into transparent areas.
38  */
39 class SpreadFilter : public ImageFilter
40 {
41 public:
42   /**
43    * Default constructor
44    */
45   SpreadFilter();
46
47   /**
48    * Destructor
49    */
50   virtual ~SpreadFilter();
51
52   /**
53    * Set the amount of spread in pixels.
54    * @param[in] spread The amount of spread
55    */
56   void SetSpread( float spread );
57
58 public: // From ImageFilter
59   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Enable
60   virtual void Enable();
61
62   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Disable
63   virtual void Disable();
64
65   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Refresh
66   virtual void Refresh();
67
68   /// @copydoc Dali::Toolkit::Internal::ImageFilter::SetSize
69   virtual void SetSize( const Vector2& size );
70
71 private:
72
73   /**
74    * Setup render tasks for blur
75    */
76   void CreateRenderTasks();
77
78 private:
79   SpreadFilter( const SpreadFilter& );
80   SpreadFilter& operator=( const SpreadFilter& );
81
82 private: // Attributes
83
84   // To perform horizontal spread from mInputTexture to mFrameBufferForHorz
85   RenderTask         mRenderTaskForHorz;
86   Actor              mActorForInput;
87   FrameBuffer        mFrameBufferForHorz;
88
89   // To perform vertical spread from mFrameBufferForHorz to mOutputFrameBuffer
90   RenderTask         mRenderTaskForVert;
91   Actor              mActorForHorz;
92
93   int                mSpread;
94 }; // class SpreadFilter
95
96 } // namespace Internal
97
98 } // namespace Toolkit
99
100 } // namespace Dali
101
102 #endif // DALI_TOOLKIT_INTERNAL_SPREAD_FILTER_H
103