Class XrEventDataVirtualKeyboardCommitTextMETA

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

public class XrEventDataVirtualKeyboardCommitTextMETA extends org.lwjgl.system.Struct<XrEventDataVirtualKeyboardCommitTextMETA> implements org.lwjgl.system.NativeResource
Commit text event.
Description

The XrEventDataVirtualKeyboardCommitTextMETA event must be sent by the runtime when a character or string is input by the keyboard. The application should append to the text field that the keyboard is editing.

Valid Usage (Implicit)
See Also

PollEvent

Layout


 struct XrEventDataVirtualKeyboardCommitTextMETA {
     XrStructureType type();
     void const * next();
     XrVirtualKeyboardMETA keyboard();
     char text()[XR_MAX_VIRTUAL_KEYBOARD_COMMIT_TEXT_SIZE_META];
 }