unplugged-vendor/device/generic/vulkan-cereal/protocols/vulkan/api/structs/VkAllocationCallbacks.txt

14 lines
580 B
Plaintext
Raw Normal View History

// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
[[VkAllocationCallbacks,VkAllocationCallbacks]]
[source,c++]
----
typedef struct VkAllocationCallbacks {
void* pUserData;
PFN_vkAllocationFunction pfnAllocation;
PFN_vkReallocationFunction pfnReallocation;
PFN_vkFreeFunction pfnFree;
PFN_vkInternalAllocationNotification pfnInternalAllocation;
PFN_vkInternalFreeNotification pfnInternalFree;
} VkAllocationCallbacks;
----