License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-toolkit.git] / optional / dali-toolkit / internal / filters / emboss-filter.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_H__
2 #define __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_H__
3
4 /*
5  * Copyright (c) 2014 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
23 // INTERNAL INCLUDES
24 #include <dali/dali.h>
25 #include "image-filter.h"
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Internal
34 {
35
36 /**
37  * An embossing image filter, implements Dali::Toolkit::Internal::ImageFilter
38  */
39 class EmbossFilter : public ImageFilter
40 {
41 public:
42   /**
43    * Construct an empty filter
44    */
45   EmbossFilter();
46
47   /**
48    * Destructor
49    */
50   virtual ~EmbossFilter();
51
52 public: // From ImageFilter
53   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Enable
54   virtual void Enable();
55
56   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Disable
57   virtual void Disable();
58
59   /// @copydoc Dali::Toolkit::Internal::ImageFilter::Refresh
60   virtual void Refresh();
61
62 private:
63   /**
64    * Setup position and parameters for camera
65    */
66   void SetupCamera();
67
68   /**
69    * Setup render tasks for blur
70    */
71   void CreateRenderTasks();
72
73 private:
74   EmbossFilter( const EmbossFilter& );
75   EmbossFilter& operator=( const EmbossFilter& );
76
77 private: // Attributes
78
79   RenderTask       mRenderTaskForEmboss1;
80   RenderTask       mRenderTaskForEmboss2;
81   RenderTask       mRenderTaskForOutput;
82   FrameBufferImage mImageForEmboss1;
83   FrameBufferImage mImageForEmboss2;
84   CameraActor      mCameraActor;
85   ImageActor       mActorForInput1;
86   ImageActor       mActorForInput2;
87   ImageActor       mActorForEmboss1;
88   ImageActor       mActorForEmboss2;
89   Actor            mActorForComposite;
90 }; // class EmbossFilter
91
92 } // namespace Internal
93
94 } // namespace Toolkit
95
96 } // namespace Dali
97
98 #endif // __DALI_TOOLKIT_INTERNAL_EMBOSS_FILTER_H__
99