Class RMTFree

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.util.remotery.RMTFree
All Implemented Interfaces:
AutoCloseable, CallbackI, NativeResource, Pointer, RMTFreeI

public abstract class RMTFree extends Callback implements RMTFreeI

Type


 void (*RMTFreeI.invoke(long, long)) (
     void *mm_context,
     void *ptr
 )
  • Method Details

    • create

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

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

      public static RMTFree create(RMTFreeI instance)
      Creates a RMTFree instance that delegates to the specified RMTFreeI instance.