Merge branch 'devel/master' into devel/graphics
[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 allocation callbacks which will be used when object is created
85    * and destroyed.
86    *
87    * @param[in] value Valid reference to AllocationCallbacksStructure
88    * @return reference to this structure
89    */
90   auto& SetAllocationCallbacks(const AllocationCallbacks& value)
91   {
92     allocationCallbacks = &value;
93     return *this;
94   }
95
96   GraphicsStructureType type{GraphicsStructureType::BUFFER_CREATE_INFO_STRUCT};
97   ExtensionCreateInfo*  nextExtension{nullptr};
98   BufferUsageFlags      usage{};
99   uint32_t              size{0u};
100
101   const AllocationCallbacks* allocationCallbacks{nullptr};
102 };
103
104 } // namespace Graphics
105 } // namespace Dali
106
107 #endif