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