Class XrViewState

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class XrViewState extends Struct<XrViewState> implements NativeResource

 struct XrViewState {
     XrStructureType type;
     void * next;
     XrViewStateFlags viewStateFlags;
 }
  • 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.
    • VIEWSTATEFLAGS

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

    • XrViewState

      public XrViewState(ByteBuffer container)
      Creates a XrViewState 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()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<XrViewState>
    • type

      public int type()
      Returns:
      the value of the type field.
    • next

      public long next()
      Returns:
      the value of the next field.
    • viewStateFlags

      public long viewStateFlags()
      Returns:
      the value of the viewStateFlags field.
    • type

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

      public XrViewState type$Default()
      Sets the TYPE_VIEW_STATE value to the type field.
    • next

      public XrViewState next(long value)
      Sets the specified value to the next field.
    • viewStateFlags

      public XrViewState viewStateFlags(long value)
      Sets the specified value to the viewStateFlags field.
    • set

      public XrViewState set(int type, long next, long viewStateFlags)
      Initializes this struct with the specified values.
    • set

      public XrViewState set(XrViewState src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static XrViewState malloc()
      Returns a new XrViewState instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

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

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

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

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

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

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

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

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

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

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

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

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

      public static XrViewState.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new XrViewState.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().
    • nviewStateFlags

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

      public static void nviewStateFlags(long struct, long value)
      Unsafe version of viewStateFlags.