C Specification
The type of pfnInternalFree is:
// Provided by VK_VERSION_1_0
typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)(
    void*                                       pUserData,
    size_t                                      size,
    VkInternalAllocationType                    allocationType,
    VkSystemAllocationScope                     allocationScope);Parameters
- 
pUserDatais the value specified for VkAllocationCallbacks::pUserDatain the allocator specified by the application.
- 
sizeis the requested size of an allocation.
- 
allocationTypeis a VkInternalAllocationType value specifying the requested type of an allocation.
- 
allocationScopeis a VkSystemAllocationScope value specifying the allocation scope of the lifetime of the allocation, as
Description
described link:https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#memory-host-allocation-scope[here^].
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.