2169e6295922e58725035607574be2ebe25a427e
[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   /**
54    * @brief Called when initializing the resource
55    *
56    * @return True on success
57    */
58   bool InitializeResource() override
59   {
60     // There is no graphic resource here. return true.
61     return true;
62   }
63
64   /**
65    * @brief Called when UniquePtr<> on client-side dies
66    */
67   void DiscardResource() override;
68
69   /**
70    * @brief Returns framebuffer associated with the render target
71    */
72   GLES::Framebuffer* GetFramebuffer() const;
73
74   /**
75    * @brief Returns surface associated with the render target
76    */
77   Surface* GetSurface() const;
78 };
79
80 } // namespace Dali::Graphics::GLES
81
82 #endif