Class XrSpaceSaveInfoFB

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

public class XrSpaceSaveInfoFB extends org.lwjgl.system.Struct<XrSpaceSaveInfoFB> implements org.lwjgl.system.NativeResource
Parameters for a save operation.
Description

The XrSpaceSaveInfoFB structure contains information used to save the spatial entity.

Valid Usage (Implicit)
See Also

SaveSpaceFB

Layout


 struct XrSpaceSaveInfoFB {
     XrStructureType type();
     void const * next();
     XrSpace space();
     XrSpaceStorageLocationFB location();
     XrSpacePersistenceModeFB persistenceMode();
 }
  • 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.
    • SPACE

      public static final int SPACE
      The struct member offsets.
    • LOCATION

      public static final int LOCATION
      The struct member offsets.
    • PERSISTENCEMODE

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

    • XrSpaceSaveInfoFB

      public XrSpaceSaveInfoFB(ByteBuffer container)
      Creates a XrSpaceSaveInfoFB 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<XrSpaceSaveInfoFB>
    • 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.
    • space

      public long space()
      the XrSpace handle to the space of the entity to be saved.
    • location

      public int location()
      the storage location.
    • persistenceMode

      public int persistenceMode()
      the persistence mode.
    • type

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

      public XrSpaceSaveInfoFB type$Default()
      Sets the TYPE_SPACE_SAVE_INFO_FB value to the type() field.
    • next

      public XrSpaceSaveInfoFB next(long value)
      Sets the specified value to the next() field.
    • space

      public XrSpaceSaveInfoFB space(XrSpace value)
      Sets the specified value to the space() field.
    • location

      public XrSpaceSaveInfoFB location(int value)
      Sets the specified value to the location() field.
    • persistenceMode

      public XrSpaceSaveInfoFB persistenceMode(int value)
      Sets the specified value to the persistenceMode() field.
    • set

      public XrSpaceSaveInfoFB set(int type, long next, XrSpace space, int location, int persistenceMode)
      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 XrSpaceSaveInfoFB malloc()
      Returns a new XrSpaceSaveInfoFB instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

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

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

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

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

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

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

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

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

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

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

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

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

      public static XrSpaceSaveInfoFB.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new XrSpaceSaveInfoFB.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().
    • nspace

      public static long nspace(long struct)
      Unsafe version of space().
    • nlocation

      public static int nlocation(long struct)
      Unsafe version of location().
    • npersistenceMode

      public static int npersistenceMode(long struct)
      Unsafe version of persistenceMode().
    • 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.
    • nspace

      public static void nspace(long struct, XrSpace value)
      Unsafe version of space.
    • nlocation

      public static void nlocation(long struct, int value)
      Unsafe version of location.
    • npersistenceMode

      public static void npersistenceMode(long struct, int value)
      Unsafe version of persistenceMode.
    • validate

      public static void validate(long struct)
      Validates pointer members that should not be NULL.
      Parameters:
      struct - the struct to validate