The open source OpenXR runtime

ipc: Change order of fields to be more standard [NFC]

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2636>

authored by Jakob Bornecrantz and committed by Marge Bot e2180b93 ef3f9d68

Changed files
+4 -4
src
xrt
ipc
+4 -4
src/xrt/ipc/shared/ipc_protocol.h
··· 85 85 { 86 86 enum xrt_device_name name; 87 87 88 + //! Offset into the array of pairs where this input bindings starts. 89 + uint32_t first_input_index; 88 90 //! Number of inputs. 89 91 uint32_t input_count; 90 - //! Offset into the array of pairs where this input bindings starts. 91 - uint32_t first_input_index; 92 92 93 + //! Offset into the array of pairs where this output bindings starts. 94 + uint32_t first_output_index; 93 95 //! Number of outputs. 94 96 uint32_t output_count; 95 - //! Offset into the array of pairs where this output bindings starts. 96 - uint32_t first_output_index; 97 97 }; 98 98 99 99 /*!