Class XrEventDataSpaceQueryCompleteFB

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

public class XrEventDataSpaceQueryCompleteFB extends org.lwjgl.system.Struct<XrEventDataSpaceQueryCompleteFB> implements org.lwjgl.system.NativeResource
Event indicating a query has finished.
Description

It indicates a query request has completed and specifies the request result. This event must be delivered when a query has completed, regardless of the number of results found. If any results have been found, then this event must be delivered after any XrEventDataSpaceQueryResultsAvailableFB events have been delivered.

Valid Usage (Implicit)

Layout


 struct XrEventDataSpaceQueryCompleteFB {
     XrStructureType type();
     void const * next();
     XrAsyncRequestIdFB requestId();
     XrResult result();
 }
  • 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.
  • Constructor Details

    • XrEventDataSpaceQueryCompleteFB

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