Class XrRenderModelLoadInfoFB

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<XrRenderModelLoadInfoFB>
org.lwjgl.openxr.XrRenderModelLoadInfoFB
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class XrRenderModelLoadInfoFB extends org.lwjgl.system.Struct<XrRenderModelLoadInfoFB> implements org.lwjgl.system.NativeResource
The information for which render model to load.
Description

XrRenderModelLoadInfoFB is used to provide information about which render model to load. XrRenderModelLoadInfoFB must be provided when calling LoadRenderModelFB.

Valid Usage (Implicit)
See Also

LoadRenderModelFB

Layout


 struct XrRenderModelLoadInfoFB {
     XrStructureType type();
     void * next();
     XrRenderModelKeyFB modelKey();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
    • MODELKEY

      public static final int MODELKEY
      The struct member offsets.
  • Constructor Details

    • XrRenderModelLoadInfoFB

      public XrRenderModelLoadInfoFB(ByteBuffer container)
      Creates a XrRenderModelLoadInfoFB instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Specified by:
      sizeof in class org.lwjgl.system.Struct<XrRenderModelLoadInfoFB>
    • type

      public int type()
      the XrStructureType of this structure.
    • next

      public long next()
      NULL or a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
    • modelKey

      public long modelKey()
      the unique model key for a connected device.
    • type

      public XrRenderModelLoadInfoFB type(int value)
      Sets the specified value to the type() field.
    • type$Default

      public XrRenderModelLoadInfoFB type$Default()
      Sets the TYPE_RENDER_MODEL_LOAD_INFO_FB value to the type() field.
    • next

      public XrRenderModelLoadInfoFB next(long value)
      Sets the specified value to the next() field.
    • modelKey

      public XrRenderModelLoadInfoFB modelKey(long value)
      Sets the specified value to the modelKey() field.
    • set

      public XrRenderModelLoadInfoFB set(int type, long next, long modelKey)
      Initializes this struct with the specified values.
    • set

      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static XrRenderModelLoadInfoFB malloc()
      Returns a new XrRenderModelLoadInfoFB instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static XrRenderModelLoadInfoFB calloc()
      Returns a new XrRenderModelLoadInfoFB instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static XrRenderModelLoadInfoFB create()
      Returns a new XrRenderModelLoadInfoFB instance allocated with BufferUtils.
    • create

      public static XrRenderModelLoadInfoFB create(long address)
      Returns a new XrRenderModelLoadInfoFB instance for the specified memory address.
    • createSafe

      public static @Nullable XrRenderModelLoadInfoFB createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static XrRenderModelLoadInfoFB.Buffer malloc(int capacity)
      Returns a new XrRenderModelLoadInfoFB.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static XrRenderModelLoadInfoFB.Buffer calloc(int capacity)
      Returns a new XrRenderModelLoadInfoFB.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static XrRenderModelLoadInfoFB.Buffer create(int capacity)
      Returns a new XrRenderModelLoadInfoFB.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static XrRenderModelLoadInfoFB.Buffer create(long address, int capacity)
      Create a XrRenderModelLoadInfoFB.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable XrRenderModelLoadInfoFB.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • malloc

      public static XrRenderModelLoadInfoFB malloc(org.lwjgl.system.MemoryStack stack)
      Returns a new XrRenderModelLoadInfoFB instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static XrRenderModelLoadInfoFB calloc(org.lwjgl.system.MemoryStack stack)
      Returns a new XrRenderModelLoadInfoFB instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static XrRenderModelLoadInfoFB.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new XrRenderModelLoadInfoFB.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static XrRenderModelLoadInfoFB.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new XrRenderModelLoadInfoFB.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • ntype

      public static int ntype(long struct)
      Unsafe version of type().
    • nnext

      public static long nnext(long struct)
      Unsafe version of next().
    • nmodelKey

      public static long nmodelKey(long struct)
      Unsafe version of modelKey().
    • ntype

      public static void ntype(long struct, int value)
      Unsafe version of type.
    • nnext

      public static void nnext(long struct, long value)
      Unsafe version of next.
    • nmodelKey

      public static void nmodelKey(long struct, long value)
      Unsafe version of modelKey.