···11+- Move `xrt_instance_info` members to nested `xrt_application_info` struct.
+16-2
src/xrt/include/xrt/xrt_instance.h
···3535#define XRT_MAX_APPLICATION_NAME_SIZE 128
36363737/*!
3838- * Information provided by the application at instance create time.
3838+ * Non-process-specific information provided by the application at instance create time.
3939+ *
4040+ * This is transported between client and server over IPC.
4141+ *
4242+ * @see xrt_instance_info
3943 */
4040-struct xrt_instance_info
4444+struct xrt_application_info
4145{
4246 char application_name[XRT_MAX_APPLICATION_NAME_SIZE];
4347 bool ext_hand_tracking_enabled;
···4650 bool htc_facial_tracking_enabled;
4751 bool fb_body_tracking_enabled;
4852 bool fb_face_tracking2_enabled;
5353+};
5454+5555+/*!
5656+ * Information provided by the application at instance create time.
5757+ *
5858+ * Some information may be process-specific.
5959+ */
6060+struct xrt_instance_info
6161+{
6262+ struct xrt_application_info app_info;
4963};
50645165/*!