Class XrViveTrackerPathsHTCX

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

public class XrViveTrackerPathsHTCX extends org.lwjgl.system.Struct<XrViveTrackerPathsHTCX> implements org.lwjgl.system.NativeResource
Struct contains two paths of VIVE tracker.
Description

The XrViveTrackerPathsHTCX structure contains two paths of VIVE tracker.

Valid Usage (Implicit)
See Also

XrEventDataViveTrackerConnectedHTCX, EnumerateViveTrackerPathsHTCX

Layout


 struct XrViveTrackerPathsHTCX {
     XrStructureType type();
     void * next();
     XrPath persistentPath();
     XrPath rolePath();
 }
  • 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.
    • PERSISTENTPATH

      public static final int PERSISTENTPATH
      The struct member offsets.
    • ROLEPATH

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

    • XrViveTrackerPathsHTCX

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

      public long persistentPath()
      the unique path of the VIVE tracker which is persistent over the lifetime of the hardware.
    • rolePath

      public long rolePath()
      the path of the VIVE tracker role. This may be NULL_PATH if the role is not assigned.
    • type

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

      public XrViveTrackerPathsHTCX type$Default()
      Sets the TYPE_VIVE_TRACKER_PATHS_HTCX value to the type() field.
    • next

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static long npersistentPath(long struct)
      Unsafe version of persistentPath().
    • nrolePath

      public static long nrolePath(long struct)
      Unsafe version of rolePath().
    • 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.