public abstract class VkFreeFunction extends org.lwjgl.system.Callback implements VkFreeFunctionI
The type of pfnFree is:
typedef void (VKAPI_PTR *PFN_vkFreeFunction)(
void* pUserData,
void* pMemory);
pMemory may be NULL, which the callback must handle safely. If pMemory is non-NULL, it must be a pointer previously allocated by pfnAllocation or pfnReallocation. The application should free this memory.
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.ZSIGNATURE| Modifier and Type | Method and Description |
|---|---|
static VkFreeFunction |
create(long functionPointer)
Creates a
VkFreeFunction instance from the specified function pointer. |
static VkFreeFunction |
create(VkFreeFunctionI instance)
Creates a
VkFreeFunction instance that delegates to the specified VkFreeFunctionI instance. |
static VkFreeFunction |
createSafe(long functionPointer)
|
__stdcall, address, equals, free, free, get, getSafe, hashCode, toStringcallback, getSignature, invokepublic static VkFreeFunction create(long functionPointer)
VkFreeFunction instance from the specified function pointer.VkFreeFunction@Nullable public static VkFreeFunction createSafe(long functionPointer)
public static VkFreeFunction create(VkFreeFunctionI instance)
VkFreeFunction instance that delegates to the specified VkFreeFunctionI instance.Copyright LWJGL. All Rights Reserved. License terms.