org.lwjgl.util.meshoptimizer.MeshoptDeallocateI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-meshoptimizer Show documentation
Show all versions of lwjgl-meshoptimizer Show documentation
A library that provides algorithms to help optimize meshes.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.util.meshoptimizer;
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.*;
/**
* Instances of this interface may be passed to the {@link MeshOptimizer#meshopt_setAllocator setAllocator} method.
*
* Type
*
*
* void (*{@link #invoke}) (
* void *ptr
* )
*/
@FunctionalInterface
@NativeType("void (*) (void *)")
public interface MeshoptDeallocateI extends CallbackI {
FFICIF CIF = apiCreateCIF(
FFI_DEFAULT_ABI,
ffi_type_void,
ffi_type_pointer
);
@Override
default FFICIF getCallInterface() { return CIF; }
@Override
default void callback(long ret, long args) {
invoke(
memGetAddress(memGetAddress(args))
);
}
void invoke(@NativeType("void *") long ptr);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy