Class XrSwapchainImageWaitInfo

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

public class XrSwapchainImageWaitInfo extends org.lwjgl.system.Struct<XrSwapchainImageWaitInfo> implements org.lwjgl.system.NativeResource
Describes a swapchain image wait operation.
Valid Usage (Implicit)
See Also

WaitSwapchainImage

Layout


 struct XrSwapchainImageWaitInfo {
     XrStructureType type();
     void const * next();
     XrDuration timeout();
 }
  • 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.
    • TIMEOUT

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

    • XrSwapchainImageWaitInfo

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

      public long timeout()
      indicates how many nanoseconds the call may block waiting for the image to become available for writing.
    • type

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

      public XrSwapchainImageWaitInfo type$Default()
      Sets the TYPE_SWAPCHAIN_IMAGE_WAIT_INFO value to the type() field.
    • next

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

      public XrSwapchainImageWaitInfo timeout(long value)
      Sets the specified value to the timeout() field.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static void ntimeout(long struct, long value)
      Unsafe version of timeout.