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