6a9fcab13e416f9e3c61c598240ebdca31b7778b
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles-impl / gles-graphics-render-target.h
1 #ifndef DALI_GRAPHICS_GLES_RENDER_TARGET_H
2 #define DALI_GRAPHICS_GLES_RENDER_TARGET_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-render-target-create-info.h>
23 #include <dali/graphics-api/graphics-render-target.h>
24
25 // INTERNAL INCLUDES
26 #include "gles-graphics-resource.h"
27
28 namespace Dali::Graphics::GLES
29 {
30 class Framebuffer;
31 using RenderTargetResource = Resource<Graphics::RenderTarget, Graphics::RenderTargetCreateInfo>;
32
33 class RenderTarget : public RenderTargetResource
34 {
35 public:
36   /**
37    * @brief Constructor
38    * @param[in] createInfo Valid createInfo structure
39    * @param[in] controller Reference to the controller
40    */
41   RenderTarget(const Graphics::RenderTargetCreateInfo& createInfo, Graphics::EglGraphicsController& controller);
42
43   /**
44    * @brief Destructor
45    */
46   ~RenderTarget() override;
47
48   /**
49    * @brief Called when GL resources are destroyed
50    */
51   void DestroyResource() override
52   {
53     // TODO: Implement destroying the resource
54   }
55
56   /**
57    * @brief Called when initializing the resource
58    *
59    * @return True on success
60    */
61   bool InitializeResource() override
62   {
63     // TODO: Implement initializing resource
64     return {};
65   }
66
67   /**
68    * @brief Called when UniquePtr<> on client-side dies
69    */
70   void DiscardResource() override
71   {
72     // TODO: Implement moving to the discard queue
73   }
74
75   /**
76    * @brief Returns framebuffer associated with the render target
77    */
78   GLES::Framebuffer* GetFramebuffer() const;
79
80   /**
81    * @brief Returns surface associated with the render target
82    */
83   Surface* GetSurface() const;
84
85 private:
86   struct Impl;
87   std::unique_ptr<Impl> mImpl{nullptr};
88 };
89
90 } // namespace Dali::Graphics::GLES
91
92 #endif