Merge branch 'devel/graphics' into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles-impl / gles-graphics-framebuffer.h
1 #ifndef DALI_GRAPHICS_GLES_FRAMEBUFFER_H
2 #define DALI_GRAPHICS_GLES_FRAMEBUFFER_H
3
4 /*
5  * Copyright (c) 2021 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/graphics-api/graphics-framebuffer-create-info.h>
23 #include <dali/graphics-api/graphics-framebuffer.h>
24
25 // INTERNAL INCLUDES
26 #include "gles-graphics-resource.h"
27
28 namespace Dali::Graphics::GLES
29 {
30 using FramebufferResource = Resource<Graphics::Framebuffer, Graphics::FramebufferCreateInfo>;
31
32 class Framebuffer : public FramebufferResource
33 {
34 public:
35   /**
36    * @brief Constructor
37    * @param[in] createInfo Valid createInfo structure
38    * @param[in] controller Reference to the controller
39    */
40   Framebuffer(const Graphics::FramebufferCreateInfo& createInfo, Graphics::EglGraphicsController& controller)
41   : FramebufferResource(createInfo, controller)
42   {
43   }
44
45   /**
46    * @brief Destructor
47    */
48   ~Framebuffer() override = default;
49
50   /**
51    * @brief Called when GL resources are destroyed
52    */
53   void DestroyResource() override
54   {
55     // TODO: Implement destroying the resource
56   }
57
58   /**
59    * @brief Called when initializing the resource
60    *
61    * @return True on success
62    */
63   bool InitializeResource() override
64   {
65     // TODO: Implement initializing resource
66     return {};
67   }
68
69   /**
70    * @brief Called when UniquePtr<> on client-side dies
71    */
72   void DiscardResource() override
73   {
74     // TODO: Implement moving to the discard queue
75   }
76 };
77
78 } // namespace Dali::Graphics::GLES
79
80 #endif