From e2180b93e75275265bebc768769c8fa13df92b5a Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Mon, 17 Nov 2025 09:57:52 +0000 Subject: [PATCH] ipc: Change order of fields to be more standard [NFC] Part-of: --- src/xrt/ipc/shared/ipc_protocol.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xrt/ipc/shared/ipc_protocol.h b/src/xrt/ipc/shared/ipc_protocol.h index 40ecd7e5d..9ff51a1be 100644 --- a/src/xrt/ipc/shared/ipc_protocol.h +++ b/src/xrt/ipc/shared/ipc_protocol.h @@ -85,15 +85,15 @@ struct ipc_shared_binding_profile { enum xrt_device_name name; - //! Number of inputs. - uint32_t input_count; //! Offset into the array of pairs where this input bindings starts. uint32_t first_input_index; + //! Number of inputs. + uint32_t input_count; - //! Number of outputs. - uint32_t output_count; //! Offset into the array of pairs where this output bindings starts. uint32_t first_output_index; + //! Number of outputs. + uint32_t output_count; }; /*! -- 2.51.2