Class XrActionSpaceCreateInfo

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

public class XrActionSpaceCreateInfo extends org.lwjgl.system.Struct<XrActionSpaceCreateInfo> implements org.lwjgl.system.NativeResource
Creation info for an action space.
Valid Usage (Implicit)
See Also

XrPosef, CreateActionSpace

Layout


 struct XrActionSpaceCreateInfo {
     XrStructureType type();
     void const * next();
     XrAction action();
     XrPath subactionPath();
     XrPosef poseInActionSpace();
 }
  • 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.
    • ACTION

      public static final int ACTION
      The struct member offsets.
    • SUBACTIONPATH

      public static final int SUBACTIONPATH
      The struct member offsets.
    • POSEINACTIONSPACE

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

    • XrActionSpaceCreateInfo

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

      public long action()
      a handle to a pose XrAction previously created with CreateAction.
    • subactionPath

      public long subactionPath()
      NULL_PATH or an XrPath that was specified when the action was created. If subactionPath is a valid path not specified when the action was created the runtime must return ERROR_PATH_UNSUPPORTED. If this parameter is set, the runtime must create a space that is relative to only that subaction’s pose binding.
    • poseInActionSpace

      public XrPosef poseInActionSpace()
      an XrPosef defining the position and orientation of the new space’s origin within the natural reference frame of the pose action.
    • type

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

      public XrActionSpaceCreateInfo type$Default()
      Sets the TYPE_ACTION_SPACE_CREATE_INFO value to the type() field.
    • next

      public XrActionSpaceCreateInfo next(long value)
      Sets the specified value to the next() field.
    • action

      public XrActionSpaceCreateInfo action(XrAction value)
      Sets the specified value to the action() field.
    • subactionPath

      public XrActionSpaceCreateInfo subactionPath(long value)
      Sets the specified value to the subactionPath() field.
    • poseInActionSpace

      public XrActionSpaceCreateInfo poseInActionSpace(XrPosef value)
      Copies the specified XrPosef to the poseInActionSpace() field.
    • poseInActionSpace

      public XrActionSpaceCreateInfo poseInActionSpace(Consumer<XrPosef> consumer)
      Passes the poseInActionSpace() field to the specified Consumer.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static long naction(long struct)
      Unsafe version of action().
    • nsubactionPath

      public static long nsubactionPath(long struct)
      Unsafe version of subactionPath().
    • nposeInActionSpace

      public static XrPosef nposeInActionSpace(long struct)
      Unsafe version of poseInActionSpace().
    • 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.
    • naction

      public static void naction(long struct, XrAction value)
      Unsafe version of action.
    • nsubactionPath

      public static void nsubactionPath(long struct, long value)
      Unsafe version of subactionPath.
    • nposeInActionSpace

      public static void nposeInActionSpace(long struct, XrPosef value)
      Unsafe version of poseInActionSpace.
    • validate

      public static void validate(long struct)
      Validates pointer members that should not be NULL.
      Parameters:
      struct - the struct to validate