Moved Core Rendering API from devel-api to public-api
[platform/core/uifw/dali-core.git] / dali / internal / event / rendering / frame-buffer-impl.h
1 #ifndef DALI_INTERNAL_FRAME_BUFFER_H
2 #define DALI_INTERNAL_FRAME_BUFFER_H
3
4 /*
5  * Copyright (c) 2016 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 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h> // DALI_ASSERT_ALWAYS
23 #include <dali/public-api/common/intrusive-ptr.h> // Dali::IntrusivePtr
24 #include <dali/public-api/object/base-object.h>
25 #include <dali/public-api/rendering/frame-buffer.h>
26 #include <dali/internal/event/common/event-thread-services.h>
27 #include <dali/internal/event/rendering/texture-impl.h>
28
29 namespace Dali
30 {
31 namespace Internal
32 {
33 namespace Render
34 {
35 class FrameBuffer;
36 }
37
38 class FrameBuffer;
39 typedef IntrusivePtr<FrameBuffer> FrameBufferPtr;
40
41 class FrameBuffer : public BaseObject
42 {
43 public:
44
45   typedef Dali::FrameBuffer::Format Format;
46
47   /**
48    * @brief Create a new FrameBuffer
49    *
50    * @param[in] width The width of the FrameBuffer
51    * @param[in] height The height of the FrameBuffer
52    * @param[in] format The format of the FrameBuffer
53    * @return A smart-pointer to the newly allocated Texture.
54    */
55   static FrameBufferPtr New( unsigned int width, unsigned int height, Format format );
56
57   /**
58    * @brief Get the FrameBuffer render object
59    *
60    * @return the FrameBuffer render object
61    */
62   Render::FrameBuffer* GetRenderObject() const;
63
64   /**
65    * @copydoc Dali::FrameBuffer::AttachColorTexture()
66    */
67   void AttachColorTexture( NewTexturePtr texture, unsigned int mipmapLevel, unsigned int layer );
68
69   /**
70    * @copydoc Dali::FrameBuffer::GetColorTexture()
71    */
72   NewTexture* GetColorTexture();
73
74 private: // implementation
75
76   /**
77    * Constructor
78    * @param[in] width The width of the FrameBuffer
79    * @param[in] height The height of the FrameBuffer
80    * @param[in] format The format of the FrameBuffer
81    */
82   FrameBuffer( unsigned int width, unsigned int height, Format format );
83
84   /**
85    * Second stage initialization of the Texture
86    */
87   void Initialize();
88
89 protected:
90
91   /**
92    * A reference counted object may only be deleted by calling Unreference()
93    */
94   virtual ~FrameBuffer();
95
96 private: // unimplemented methods
97   FrameBuffer( const FrameBuffer& );
98   FrameBuffer& operator=( const FrameBuffer& );
99
100 private: // data
101
102   Internal::EventThreadServices& mEventThreadServices;    ///<Used to send messages to the render thread via update thread
103   Internal::Render::FrameBuffer* mRenderObject;            ///<The Render::Texture associated to this texture
104
105   NewTexturePtr mColor;
106   unsigned int mWidth;
107   unsigned int mHeight;
108   Format mFormat;
109
110 };
111
112 } // namespace Internal
113
114 // Helpers for public-api forwarding methods
115 inline Internal::FrameBuffer& GetImplementation(Dali::FrameBuffer& handle)
116 {
117   DALI_ASSERT_ALWAYS(handle && "FrameBuffer handle is empty");
118
119   BaseObject& object = handle.GetBaseObject();
120
121   return static_cast<Internal::FrameBuffer&>(object);
122 }
123
124 inline const Internal::FrameBuffer& GetImplementation(const Dali::FrameBuffer& handle)
125 {
126   DALI_ASSERT_ALWAYS(handle && "FrameBuffer handle is empty");
127
128   const BaseObject& object = handle.GetBaseObject();
129
130   return static_cast<const Internal::FrameBuffer&>(object);
131 }
132
133 } // namespace Dali
134
135 #endif // DALI_INTERNAL_FRAME_BUFFER_H