Class XrEventDataMarkerTrackingUpdateVARJO

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

public class XrEventDataMarkerTrackingUpdateVARJO extends org.lwjgl.system.Struct<XrEventDataMarkerTrackingUpdateVARJO> implements org.lwjgl.system.NativeResource
Structure representing marker tracking information.
Description

Receiving the XrEventDataMarkerTrackingUpdateVARJO event structure indicates that the tracking information has changed. The runtime must not send more than one event per frame per marker. The runtime must send an event if the marker has changed its state (active or inactive). The runtime must send an event if it has detected pose change of the active marker.

Valid Usage (Implicit)
See Also

PollEvent

Layout


 struct XrEventDataMarkerTrackingUpdateVARJO {
     XrStructureType type();
     void const * next();
     uint64_t markerId();
     XrBool32 isActive();
     XrBool32 isPredicted();
     XrTime time();
 }