Merge "Merge branch 'devel/master' into devel/graphics" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / gles-impl / egl-sync-object.h
1 #ifndef DALI_GRAPHICS_EGL_SYNC_OBJECT_H
2 #define DALI_GRAPHICS_EGL_SYNC_OBJECT_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 // EXTERNAL INCLUDES
21 #include <dali/graphics-api/graphics-sync-object-create-info.h>
22 #include <dali/graphics-api/graphics-sync-object.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/graphics/gles-impl/gles-graphics-resource.h>
26
27 namespace Dali::Internal::Adaptor
28 {
29 class EglSyncImplementation;
30 class EglSyncObject;
31 } // namespace Dali::Internal::Adaptor
32
33 namespace Dali::Graphics::EGL
34 {
35 using SyncObjectResource = GLES::Resource<Graphics::SyncObject, Graphics::SyncObjectCreateInfo>;
36
37 class SyncObject : public SyncObjectResource
38 {
39 public:
40   /**
41    * @brief Constructor
42    * @param[in] createInfo Valid createInfo structure
43    * @param[in] controller Reference to the controller
44    */
45   SyncObject(const Graphics::SyncObjectCreateInfo& createInfo, Graphics::EglGraphicsController& controller);
46
47   /**
48    * @brief Destructor
49    */
50   ~SyncObject() override;
51
52   /**
53    * @brief Called when GL resources are destroyed
54    */
55   void DestroyResource() override;
56
57   /**
58    * @brief Called when initializing the resource
59    *
60    * @return True on success
61    */
62   bool InitializeResource() override;
63
64   /**
65    * @brief Called when UniquePtr<> on client-side dies
66    */
67   void DiscardResource() override;
68
69   /**
70    * Determine if the synchronisation object has been signalled.
71    *
72    * @return false if the sync object has not been signalled, true if it has been signalled (and
73    * can now be destroyed)
74    */
75   bool IsSynced() override;
76
77 private:
78   Internal::Adaptor::EglSyncImplementation& mEglSyncImplementation;
79   Internal::Adaptor::EglSyncObject*         mEglSyncObject;
80 };
81
82 } // namespace Dali::Graphics::EGL
83
84 #endif //DALI_GRAPHICS_EGL_SYNC_OBJECT_H