org.lwjgl.glfw.GLFWReallocateCallbackI Maven / Gradle / Ivy
Show all versions of lwjgl-glfw Show documentation
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.glfw;
import org.lwjgl.system.*;
import org.lwjgl.system.libffi.*;
import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.libffi.LibFFI.*;
/**
* The function pointer type for memory reallocation callbacks.
*
* This is the function pointer type for memory reallocation callbacks. A memory reallocation callback function has the following signature:
*
*
* void* function_name(void* block, size_t size, void* user)
*
* This function must return a memory block at least {@code size} bytes long, or {@code NULL} if allocation failed. Note that not all parts of GLFW handle
* allocation failures gracefully yet.
*
* This function may be called during {@link GLFW#glfwInit Init} but before the library is flagged as initialized, as well as during {@link GLFW#glfwTerminate Terminate} after the library is no
* longer flagged as initialized.
*
* Any memory allocated by this function will be deallocated during library termination or earlier.
*
* The block address will never be {@code NULL} and the size will always be greater than zero. Reallocations of a block to size zero are converted into
* deallocations. Reallocations of {@code NULL} to a non-zero size are converted into regular allocations.
*
* Note
*
*
* - The returned memory block must be valid at least until it is deallocated.
* - This function should not call any GLFW function.
* - This function may be called from any thread that calls GLFW functions.
*
*
* Type
*
*
* void * (*{@link #invoke}) (
* void *block,
* size_t size,
* void *user
* )
*
* @since version 3.4
*/
@FunctionalInterface
@NativeType("GLFWreallocatefun")
public interface GLFWReallocateCallbackI extends CallbackI {
FFICIF CIF = apiCreateCIF(
FFI_DEFAULT_ABI,
ffi_type_pointer,
ffi_type_pointer, ffi_type_pointer, ffi_type_pointer
);
@Override
default FFICIF getCallInterface() { return CIF; }
@Override
default void callback(long ret, long args) {
long __result = invoke(
memGetAddress(memGetAddress(args)),
memGetAddress(memGetAddress(args + POINTER_SIZE)),
memGetAddress(memGetAddress(args + 2 * POINTER_SIZE))
);
apiClosureRetP(ret, __result);
}
/**
* Will be called for memory reallocation requests.
*
* @param block the address of the memory block to reallocate
* @param size the new minimum size, in bytes, of the memory block
* @param user the user-defined pointer from the allocator
*
* @return the address of the newly allocated or resized memory block, or {@code NULL} if an error occurred
*/
@NativeType("void *") long invoke(@NativeType("void *") long block, @NativeType("size_t") long size, @NativeType("void *") long user);
}