org.lwjgl.nuklear.NkDrawBeginCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-nuklear Show documentation
Show all versions of lwjgl-nuklear Show documentation
A minimal state immediate mode graphical user interface toolkit.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.nuklear;
import javax.annotation.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Instances of this class may be set to the {@code nk_style_*} structs.
*
* Type
*
*
* float (*{@link #invoke}) (
* struct nk_command_buffer *buffer,
* nk_handle userdata
* )
*/
public abstract class NkDrawBeginCallback extends Callback implements NkDrawBeginCallbackI {
/**
* Creates a {@code NkDrawBeginCallback} instance from the specified function pointer.
*
* @return the new {@code NkDrawBeginCallback}
*/
public static NkDrawBeginCallback create(long functionPointer) {
NkDrawBeginCallbackI instance = Callback.get(functionPointer);
return instance instanceof NkDrawBeginCallback
? (NkDrawBeginCallback)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
@Nullable
public static NkDrawBeginCallback createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code NkDrawBeginCallback} instance that delegates to the specified {@code NkDrawBeginCallbackI} instance. */
public static NkDrawBeginCallback create(NkDrawBeginCallbackI instance) {
return instance instanceof NkDrawBeginCallback
? (NkDrawBeginCallback)instance
: new Container(instance.address(), instance);
}
protected NkDrawBeginCallback() {
super(CIF);
}
NkDrawBeginCallback(long functionPointer) {
super(functionPointer);
}
private static final class Container extends NkDrawBeginCallback {
private final NkDrawBeginCallbackI delegate;
Container(long functionPointer, NkDrawBeginCallbackI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public float invoke(long buffer, long userdata) {
return delegate.invoke(buffer, userdata);
}
}
}