Class XrInstanceProperties

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

public class XrInstanceProperties extends org.lwjgl.system.Struct<XrInstanceProperties> implements org.lwjgl.system.NativeResource
Contains information about the instance.
Valid Usage (Implicit)
See Also

GetInstanceProperties

Layout


 struct XrInstanceProperties {
     XrStructureType type();
     void * next();
     XrVersion runtimeVersion();
     char runtimeName()[XR_MAX_RUNTIME_NAME_SIZE];
 }
  • 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.
    • RUNTIMEVERSION

      public static final int RUNTIMEVERSION
      The struct member offsets.
    • RUNTIMENAME

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

    • XrInstanceProperties

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

      public long runtimeVersion()
      the runtime’s version (not necessarily related to an OpenXR API version), expressed in the format of XR10.XR_MAKE_VERSION(int, int, int).
    • runtimeName

      public ByteBuffer runtimeName()
      the name of the runtime.
    • runtimeNameString

      public String runtimeNameString()
      the name of the runtime.
    • type

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

      public XrInstanceProperties type$Default()
      Sets the TYPE_INSTANCE_PROPERTIES value to the type() field.
    • next

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

      public XrInstanceProperties 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 XrInstanceProperties malloc()
      Returns a new XrInstanceProperties instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static long nruntimeVersion(long struct)
      Unsafe version of runtimeVersion().
    • nruntimeName

      public static ByteBuffer nruntimeName(long struct)
      Unsafe version of runtimeName().
    • nruntimeNameString

      public static String nruntimeNameString(long struct)
      Unsafe version of runtimeNameString().
    • 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.