Add Post Constraint that works after transform
[platform/core/uifw/dali-core.git] / dali / graphics-api / graphics-buffer-create-info.h
1 #ifndef DALI_GRAPHICS_API_BUFFER_CREATE_INFO
2 #define DALI_GRAPHICS_API_BUFFER_CREATE_INFO
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-buffer.h"
26 #include "graphics-types.h"
27
28 namespace Dali
29 {
30 namespace Graphics
31 {
32 /**
33  * BufferCreateInfo describes new buffer
34  */
35 struct BufferCreateInfo
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   /**
55    * @brief Sets the expected buffer usage
56    *
57    * The buffer usage should be explicitly set. It cannot be modified
58    * later so in case of changing the usage, the new buffer
59    * should be created. Based on Usage the implementation may
60    * execute certain optimizations.
61    *
62    * @param[in] value Usage flags
63    * @return reference to this structure
64    */
65   auto& SetUsage(BufferUsageFlags value)
66   {
67     usage = value;
68     return *this;
69   }
70
71   /**
72    * @brief Sets size of buffer in bytes
73    *
74    * @param[in] value Size of the buffer in bytes
75    * @return reference to this structure
76    */
77   auto& SetSize(uint32_t value)
78   {
79     size = value;
80     return *this;
81   }
82
83   /**
84    * @brief Sets properties flags
85    *
86    * Properties flag bits can alter behaviour of the implementation
87    *
88    * @param[in] value Flags
89    * @return reference to this structure
90    */
91   auto& SetBufferPropertiesFlags( BufferPropertiesFlags value )
92   {
93     propertiesFlags = value;
94     return *this;
95   }
96
97   /**
98    * @brief Sets allocation callbacks which will be used when object is created
99    * and destroyed.
100    *
101    * @param[in] value Valid reference to AllocationCallbacksStructure
102    * @return reference to this structure
103    */
104   auto& SetAllocationCallbacks(const AllocationCallbacks& value)
105   {
106     allocationCallbacks = &value;
107     return *this;
108   }
109
110   GraphicsStructureType type{GraphicsStructureType::BUFFER_CREATE_INFO_STRUCT};
111   ExtensionCreateInfo*  nextExtension{nullptr};
112   BufferUsageFlags      usage{};
113   uint32_t              size{0u};
114   BufferPropertiesFlags propertiesFlags{};
115   const AllocationCallbacks* allocationCallbacks{nullptr};
116 };
117
118 } // namespace Graphics
119 } // namespace Dali
120
121 #endif