Class XrEventDataSpaceSaveCompleteFB

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

public class XrEventDataSpaceSaveCompleteFB extends org.lwjgl.system.Struct<XrEventDataSpaceSaveCompleteFB> implements org.lwjgl.system.NativeResource
Describes the result of a save operation.
Description

The save result event contains the success of the save/write operation to the specified location, as well as the XrSpace handle on which the save operation was attempted on, the unique UUID, and the triggered async request ID from the initial calling function.

Valid Usage (Implicit)
See Also

XrUuidEXT

Layout


 struct XrEventDataSpaceSaveCompleteFB {
     XrStructureType type();
     void const * next();
     XrAsyncRequestIdFB requestId();
     XrResult result();
     XrSpace space();
     XrUuidEXT uuid();
     XrSpaceStorageLocationFB location();
 }
  • 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.
    • REQUESTID

      public static final int REQUESTID
      The struct member offsets.
    • RESULT

      public static final int RESULT
      The struct member offsets.
    • SPACE

      public static final int SPACE
      The struct member offsets.
    • UUID

      public static final int UUID
      The struct member offsets.
    • LOCATION

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

    • XrEventDataSpaceSaveCompleteFB

      public XrEventDataSpaceSaveCompleteFB(ByteBuffer container)
      Creates a XrEventDataSpaceSaveCompleteFB 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