Class XrRenderModelPathInfoFB

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

public class XrRenderModelPathInfoFB extends org.lwjgl.system.Struct<XrRenderModelPathInfoFB> implements org.lwjgl.system.NativeResource
Supported model paths.
Description

XrRenderModelPathInfoFB contains a model path supported by the device when returned from EnumerateRenderModelPathsFB. This path can be used to request information about the render model for the connected device that the path represents using GetRenderModelPropertiesFB.

Possible Render Model Paths
  • Controller models with origin at the grip pose.
    • pathname:/model_fb/controller/left
    • pathname:/model_fb/controller/right
  • Keyboard models with origin at the center of its bounding box.
    • pathname:/model_fb/keyboard/local
    • pathname:/model_fb/keyboard/remote
    • pathname:/model_meta/keyboard/virtual (if the XR_META_virtual_keyboard extension is enabled)
Valid Usage (Implicit)
See Also

EnumerateRenderModelPathsFB

Layout


 struct XrRenderModelPathInfoFB {
     XrStructureType type();
     void * next();
     XrPath path();
 }
  • 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.
    • PATH

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

    • XrRenderModelPathInfoFB

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

      public long path()
      a valid XrPath used for retrieving model properties from GetRenderModelPropertiesFB.
    • type

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

      public XrRenderModelPathInfoFB type$Default()
      Sets the TYPE_RENDER_MODEL_PATH_INFO_FB value to the type() field.
    • next

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

      public XrRenderModelPathInfoFB path(long value)
      Sets the specified value to the path() field.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static void npath(long struct, long value)
      Unsafe version of path.