Add Post Constraint that works after transform
[platform/core/uifw/dali-core.git] / dali / graphics-api / graphics-sync-object-create-info.h
1 #ifndef DALI_GRAPHICS_SYNC_OBJECT_CREATE_INFO_H
2 #define DALI_GRAPHICS_SYNC_OBJECT_CREATE_INFO_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 <memory>
23
24 // INTERNAL INCLUDES
25 #include "graphics-sync-object.h"
26 #include "graphics-types.h"
27
28 namespace Dali
29 {
30 namespace Graphics
31 {
32 /**
33  * @brief Interface class for SyncObjectCreateInfo types in the graphics API.
34  */
35 struct SyncObjectCreateInfo
36 {
37   /**
38    * @brief Sets pointer to the extension
39    *
40    * The pointer to the extension must be set either to nullptr
41    * or to the valid structure. The structures may create
42    * a chain. The last structure in a chain must point at
43    * nullptr.
44    *
45    * @param[in] value pointer to the valid extension structure
46    * @return reference to this structure
47    */
48   auto& SetNextExtension(ExtensionCreateInfo* value)
49   {
50     nextExtension = value;
51     return *this;
52   }
53
54   GraphicsStructureType type{GraphicsStructureType::SYNC_OBJECT_CREATE_INFO_STRUCT};
55   ExtensionCreateInfo*  nextExtension{nullptr};
56
57   const AllocationCallbacks* allocationCallbacks{nullptr};
58 };
59
60 } // namespace Graphics
61 } // namespace Dali
62
63 #endif // DALI_GRAPHICS_SYNC_OBJECT_CREATE_INFO