@FunctionalInterface
public interface VkInternalFreeNotificationI
extends org.lwjgl.system.CallbackI.V
The type of pfnInternalFree is:
typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)(
void* pUserData,
size_t size,
VkInternalAllocationType allocationType,
VkSystemAllocationScope allocationScope);
org.lwjgl.system.CallbackI.B, org.lwjgl.system.CallbackI.D, org.lwjgl.system.CallbackI.F, org.lwjgl.system.CallbackI.I, org.lwjgl.system.CallbackI.J, org.lwjgl.system.CallbackI.N, org.lwjgl.system.CallbackI.P, org.lwjgl.system.CallbackI.S, org.lwjgl.system.CallbackI.V, org.lwjgl.system.CallbackI.Z| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
SIGNATURE |
| Modifier and Type | Method and Description |
|---|---|
default void |
callback(long args) |
default java.lang.String |
getSignature() |
void |
invoke(long pUserData,
long size,
int allocationType,
int allocationScope)
Application-defined memory free notification function.
|
default java.lang.String getSignature()
getSignature in interface org.lwjgl.system.CallbackIdefault void callback(long args)
callback in interface org.lwjgl.system.CallbackI.Vvoid invoke(long pUserData,
long size,
int allocationType,
int allocationScope)
pUserData - the value specified for VkAllocationCallbacks::pUserData in the allocator specified by the application.size - the requested size of an allocation.allocationType - a VkInternalAllocationType value specifying the requested type of an allocation.allocationScope - a VkSystemAllocationScope value specifying the allocation scope of the lifetime of the allocation, as described here.Copyright LWJGL. All Rights Reserved. License terms.