Merge "Add '@addtogroup' tag to generate doxygen page" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / frame-buffer.h
1 #ifndef DALI_FRAMEBUFFER_H
2 #define DALI_FRAMEBUFFER_H
3
4 /*
5  * Copyright (c) 2018 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 <cstdint> // uint32_t
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/object/base-handle.h>
26 #include <dali/public-api/rendering/texture.h>
27
28 namespace Dali
29 {
30 /**
31  * @addtogroup dali_core_rendering_effects
32  * @{
33  */
34
35 namespace Internal DALI_INTERNAL
36 {
37 class FrameBuffer;
38 }
39
40 /**
41  * @brief FrameBuffer is a collection of textures that can be used as the destination for rendering.
42  * @SINCE_1_1.43
43  */
44 class DALI_CORE_API FrameBuffer : public BaseHandle
45 {
46 public:
47
48   /**
49    * @brief The initial attachments to create the FrameBuffer with.
50    * @note The color attachment can also be created on calling AttachColorTexture().
51    * @note With "NONE", no attachments are created initially. However color attachments can still be added as described above.
52    *
53    * @SINCE_1_1.45
54    */
55   struct Attachment
56   {
57     /**
58      * @brief Enumeration for the attachments and/or textures to be created by default
59      * @SINCE_1_1.45
60      */
61     enum Mask
62     {
63       NONE          = 0,                          ///< No attachments are created initially             @SINCE_1_1.45
64       DEPTH         = 1 << 0,                     ///< Depth buffer is created                          @SINCE_1_1.45
65       STENCIL       = 1 << 1,                     ///< Stencil buffer is created                        @SINCE_1_1.45
66       DEPTH_STENCIL = DEPTH | STENCIL,            ///< Depth and stencil buffer will be created         @SINCE_1_1.45
67       COLOR         = 1 << 2,                     ///< Color texture will be created                    @SINCE_1_4.0
68       COLOR_DEPTH   = COLOR | DEPTH,              ///< Color texture and depth buffer will be created   @SINCE_1_4.0
69       COLOR_STENCIL = COLOR | STENCIL,            ///< Color texture and stencil buffer will be created @SINCE_1_4.0
70       COLOR_DEPTH_STENCIL = COLOR_DEPTH | STENCIL ///< Color, depth and stencil buffer will be created  @SINCE_1_4.0
71     };
72   };
73
74   /**
75    * @brief Creates a new FrameBuffer with only COLOR texture attached on it
76    *
77    * @SINCE_1_4.0
78    *
79    * @note Call GetColorTexture() to get the COLOR texture
80    *
81    * @param[in] width The width of the FrameBuffer and the color texture
82    * @param[in] height The height of the FrameBuffer and the color texture
83    * @return A handle to a newly allocated FrameBuffer
84    */
85   static FrameBuffer New( uint32_t width, uint32_t height );
86
87   /**
88    * @brief Creates a new FrameBuffer with the specified attachments
89    *
90    * @SINCE_1_4.0
91    *
92    * @param[in] width The width of the FrameBuffer and the attachments
93    * @param[in] height The height of the FrameBuffer and the attachments
94    * @param[in] attachments Enumeration of the attachments to create
95    * @return A handle to a newly allocated FrameBuffer
96    */
97   static FrameBuffer New( uint32_t width, uint32_t height, Attachment::Mask attachments );
98
99   /**
100    * @DEPRECATED_1_4.0 use New( uint32_t width, uint32_t height ) or New( uint32_t width, uint32_t height, Attachment::Mask attachments ) instead
101    * @brief Creates a new FrameBuffer object.
102    *
103    * @SINCE_1_1.43
104    *
105    * @param[in] width The width of the FrameBuffer
106    * @param[in] height The height of the FrameBuffer
107    * @param[in] attachments The attachments comprising the format of the FrameBuffer (the type is int to allow multiple bitmasks to be ORd)
108    * @return A handle to a newly allocated FrameBuffer
109    */
110   static FrameBuffer New( uint32_t width, uint32_t height, uint32_t attachments );
111
112   /**
113    * @brief Default constructor, creates an empty handle.
114    */
115   FrameBuffer();
116
117   /**
118    * @brief Destructor.
119    * @SINCE_1_1.43
120    */
121   ~FrameBuffer();
122
123   /**
124    * @brief Copy constructor, creates a new handle to the same object.
125    *
126    * @SINCE_1_1.43
127    * @param[in] handle Handle to an object
128    */
129   FrameBuffer( const FrameBuffer& handle );
130
131   /**
132    * @brief Downcasts to a FrameBuffer.
133    * If not, the returned handle is left uninitialized.
134    * @SINCE_1_1.43
135    * @param[in] handle Handle to an object
136    * @return FrameBuffer handle or an uninitialized handle
137    */
138   static FrameBuffer DownCast( BaseHandle handle );
139
140   /**
141    * @brief Assignment operator, changes this handle to point at the same object.
142    *
143    * @SINCE_1_1.43
144    * @param[in] handle Handle to an object
145    * @return Reference to the assigned object
146    */
147   FrameBuffer& operator=( const FrameBuffer& handle );
148
149   /**
150    * @brief Attach the base LOD of a 2D texture to the framebuffer for color rendering.
151    * @note This causes a color attachment to be added.
152    *
153    * @SINCE_1_1.43
154    * @param[in] texture The texture that will be used as output when rendering
155    * @note The texture has to have the same size than the FrameBuffer
156    * otherwise it won't be attached.
157    */
158   void AttachColorTexture( Texture& texture );
159
160   /**
161    * @brief Attach a texture to the framebuffer for color rendering.
162    * @note This causes a color attachment to be added.
163    *
164    * @SINCE_1_1.43
165    * @param[in] texture The texture that will be used as output when rendering
166    * @param[in] mipmapLevel The mipmap of the texture to be attached
167    * @param[in] layer Indicates which layer of a cube map or array texture to attach. Unused for 2D textures
168    * @note The specified texture mipmap has to have the same size than the FrameBuffer
169    * otherwise it won't be attached.
170    */
171   void AttachColorTexture( Texture& texture, uint32_t mipmapLevel, uint32_t layer );
172
173   /**
174    * @brief Gets the color texture used as output in the FrameBuffer.
175    *
176    * @SINCE_1_1.43
177    * @returns A handle to the texture used as color output, or an uninitialized handle
178    */
179   Texture GetColorTexture();
180
181 public:
182
183   /**
184    * @brief The constructor.
185    * @note  Not intended for application developers.
186    * @SINCE_1_1.43
187    * @param[in] pointer A pointer to a newly allocated FrameBuffer
188    */
189   explicit DALI_INTERNAL FrameBuffer( Internal::FrameBuffer* pointer );
190 };
191
192 /**
193  * @}
194  */
195 } //namespace Dali
196
197 #endif // DALI_FRAMEBUFFER_H