Class NkDrawBeginCallback

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.nuklear.NkDrawBeginCallback
All Implemented Interfaces:
AutoCloseable, NkDrawBeginCallbackI, CallbackI, NativeResource, Pointer

public abstract class NkDrawBeginCallback extends Callback implements NkDrawBeginCallbackI
Callback function: nk_draw_begin
  • Method Details

    • create

      public static NkDrawBeginCallback create(long functionPointer)
      Creates a NkDrawBeginCallback instance from the specified function pointer.
      Returns:
      the new NkDrawBeginCallback
    • createSafe

      public static @Nullable NkDrawBeginCallback createSafe(long functionPointer)
      Like create, but returns null if functionPointer is NULL.
    • create

      public static NkDrawBeginCallback create(NkDrawBeginCallbackI instance)
      Creates a NkDrawBeginCallback instance that delegates to the specified NkDrawBeginCallbackI instance.