Class XrBodyTrackerCreateInfoFB

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

public class XrBodyTrackerCreateInfoFB extends org.lwjgl.system.Struct<XrBodyTrackerCreateInfoFB> implements org.lwjgl.system.NativeResource
Information to create a body joints handle.
Valid Usage (Implicit)
See Also

CreateBodyTrackerFB

Layout


 struct XrBodyTrackerCreateInfoFB {
     XrStructureType type();
     void const * next();
     XrBodyJointSetFB bodyJointSet();
 }
  • 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.
    • BODYJOINTSET

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

    • XrBodyTrackerCreateInfoFB

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

      public int bodyJointSet()
      an XrBodyJointSetFB that describes the set of body joints to retrieve.
    • type

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

      public XrBodyTrackerCreateInfoFB type$Default()
      Sets the TYPE_BODY_TRACKER_CREATE_INFO_FB value to the type() field.
    • next

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

      public XrBodyTrackerCreateInfoFB bodyJointSet(int value)
      Sets the specified value to the bodyJointSet() field.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static void nbodyJointSet(long struct, int value)
      Unsafe version of bodyJointSet.