Class XrSpaceLocation

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

public class XrSpaceLocation extends org.lwjgl.system.Struct<XrSpaceLocation> implements org.lwjgl.system.NativeResource
Contains info about a space.
Valid Usage (Implicit)
See Also

XrPosef, XrSpaceVelocity, LocateSpace

Layout


 struct XrSpaceLocation {
     XrStructureType type();
     void * next();
     XrSpaceLocationFlags locationFlags();
     XrPosef pose();
 }
  • 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.
    • LOCATIONFLAGS

      public static final int LOCATIONFLAGS
      The struct member offsets.
    • POSE

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

    • XrSpaceLocation

      public XrSpaceLocation(ByteBuffer container)
      Creates a XrSpaceLocation 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<XrSpaceLocation>
    • 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, such as XrSpaceVelocity.
    • locationFlags

      public long locationFlags()
      a bitfield, with bit masks defined in XrSpaceLocationFlagBits, to indicate which members contain valid data. If none of the bits are set, no other fields in this structure should be considered to be valid or meaningful.
    • pose

      public XrPosef pose()
      an XrPosef defining the position and orientation of the origin of LocateSpace::space within the reference frame of LocateSpace::baseSpace.
    • type

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

      public XrSpaceLocation type$Default()
      Sets the TYPE_SPACE_LOCATION value to the type() field.
    • next

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

      Prepends the specified XrEyeGazeSampleTimeEXT value to the next chain.
    • next

      public XrSpaceLocation next(XrSpaceVelocity value)
      Prepends the specified XrSpaceVelocity value to the next chain.
    • locationFlags

      public XrSpaceLocation locationFlags(long value)
      Sets the specified value to the locationFlags() field.
    • pose

      public XrSpaceLocation pose(XrPosef value)
      Copies the specified XrPosef to the pose() field.
    • pose

      public XrSpaceLocation pose(Consumer<XrPosef> consumer)
      Passes the pose() field to the specified Consumer.
    • set

      public XrSpaceLocation set(int type, long next, long locationFlags, XrPosef pose)
      Initializes this struct with the specified values.
    • set

      public XrSpaceLocation set(XrSpaceLocation src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static long nlocationFlags(long struct)
      Unsafe version of locationFlags().
    • npose

      public static XrPosef npose(long struct)
      Unsafe version of pose().
    • 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.
    • nlocationFlags

      public static void nlocationFlags(long struct, long value)
      Unsafe version of locationFlags.
    • npose

      public static void npose(long struct, XrPosef value)
      Unsafe version of pose.