[Tizen] [ATSPI] ignore ScreenReaderEnabled property on suppress mode
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles-impl / gles-graphics-render-pass.h
1 #ifndef DALI_GRAPHICS_GLES_RENDER_PASS_H
2 #define DALI_GRAPHICS_GLES_RENDER_PASS_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-pass-create-info.h>
23 #include <dali/graphics-api/graphics-render-pass.h>
24
25 // INTERNAL INCLUDES
26 #include "gles-graphics-resource.h"
27
28 namespace Dali::Graphics::GLES
29 {
30 using RenderPassResource = Resource<Graphics::RenderPass, Graphics::RenderPassCreateInfo>;
31
32 class RenderPass : public RenderPassResource
33 {
34 public:
35   /**
36    * @brief Constructor
37    * @param[in] createInfo Valid createInfo structure
38    * @param[in] controller Reference to the controller
39    */
40   RenderPass(const Graphics::RenderPassCreateInfo& createInfo, Graphics::EglGraphicsController& controller);
41
42   /**
43    * @brief Destructor
44    */
45   ~RenderPass() override;
46
47   /**
48    * @brief Called when GL resources are destroyed
49    */
50   void DestroyResource() override
51   {
52     // There is no graphic resource here. do nothing.
53   }
54
55   /**
56    * @brief Called when initializing the resource
57    *
58    * @return True on success
59    */
60   bool InitializeResource() override
61   {
62     // There is no graphic resource here. return true.
63     return true;
64   }
65
66   /**
67    * @brief Called when UniquePtr<> on client-side dies
68    */
69   void DiscardResource() override;
70
71 private:
72   struct Impl;
73   std::unique_ptr<Impl> mImpl{nullptr};
74 };
75
76 } // namespace Dali::Graphics::GLES
77
78 #endif