org.lwjgl.vulkan.VkReallocationFunction Maven / Gradle / Ivy
Show all versions of lwjgl-vulkan Show documentation
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Application-defined memory reallocation function.
*
* C Specification
*
* The type of {@code pfnReallocation} is:
*
* typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)(
void* pUserData,
void* pOriginal,
size_t size,
size_t alignment,
VkSystemAllocationScope allocationScope);
*
* Description
*
* {@code pfnReallocation} must return an allocation with enough space for {@code size} bytes, and the contents of the original allocation from bytes zero to min(original size, new size) - 1
must be preserved in the returned allocation. If {@code size} is larger than the old size, the contents of the additional space are undefined. If satisfying these requirements involves creating a new allocation, then the old allocation should be freed.
*
* If {@code pOriginal} is {@code NULL}, then {@code pfnReallocation} must behave equivalently to a call to {@link VkAllocationFunction} with the same parameter values (without {@code pOriginal}).
*
* If {@code size} is zero, then {@code pfnReallocation} must behave equivalently to a call to {@link VkFreeFunction} with the same {@code pUserData} parameter value, and {@code pMemory} equal to {@code pOriginal}.
*
* If {@code pOriginal} is non-{@code NULL}, the implementation must ensure that {@code alignment} is equal to the {@code alignment} used to originally allocate {@code pOriginal}.
*
* If this function fails and {@code pOriginal} is non-{@code NULL} the application must not free the old allocation.
*
* {@code pfnReallocation} must follow the same rules for return values as tname:PFN_vkAllocationFunction.
*
* See Also
*
* {@link VkAllocationCallbacks}
*/
public abstract class VkReallocationFunction extends Callback implements VkReallocationFunctionI {
/** Creates a {@code VkReallocationFunction} instance from the specified function pointer. */
public static VkReallocationFunction create(long functionPointer) {
if ( functionPointer == NULL )
return null;
VkReallocationFunctionI instance = Callback.get(functionPointer);
return instance instanceof VkReallocationFunction
? (VkReallocationFunction)instance
: new Container(functionPointer, instance);
}
/** Creates a {@code VkReallocationFunction} instance that delegates to the specified {@code VkReallocationFunctionI} instance. */
public static VkReallocationFunction create(VkReallocationFunctionI instance) {
return instance instanceof VkReallocationFunction
? (VkReallocationFunction)instance
: new Container(instance.address(), instance);
}
protected VkReallocationFunction() {
super(SIGNATURE);
}
private VkReallocationFunction(long functionPointer) {
super(functionPointer);
}
private static final class Container extends VkReallocationFunction {
private final VkReallocationFunctionI delegate;
Container(long functionPointer, VkReallocationFunctionI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public long invoke(long pUserData, long pOriginal, long size, long alignment, int allocationScope) {
return delegate.invoke(pUserData, pOriginal, size, alignment, allocationScope);
}
}
}