Add Post Constraint that works after transform
[platform/core/uifw/dali-core.git] / dali / graphics-api / graphics-sync-object.h
1 #ifndef DALI_GRAPHICS_API_GRAPHICS_SYNC_OBJECT_H
2 #define DALI_GRAPHICS_API_GRAPHICS_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 namespace Dali::Graphics
21 {
22 class SyncObject
23 {
24 public:
25   SyncObject()          = default;
26   virtual ~SyncObject() = default;
27
28   // Definitely not copyable:
29   SyncObject(const SyncObject&) = delete;
30   SyncObject& operator=(const SyncObject&) = delete;
31
32   /**
33    * Determine if the synchronisation object has been signalled.
34    *
35    * @return false if the sync object has not been signalled, true if it has been signalled (and
36    * can now be destroyed)
37    */
38   virtual bool IsSynced() = 0;
39
40 protected:
41   SyncObject(SyncObject&&) = default;
42   SyncObject& operator=(SyncObject&&) = default;
43 };
44
45 } // namespace Dali::Graphics
46
47 #endif //DALI_GRAPHICS_API_GRAPHICS_SYNC_OBJECT_H