The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

u/builder: Pass in broadcast to legacy space overseer helper

+7 -2
+3 -1
src/xrt/auxiliary/util/u_builders.c
··· 144 144 } 145 145 146 146 void 147 - u_builder_create_space_overseer_legacy(struct xrt_device *head, 147 + u_builder_create_space_overseer_legacy(struct xrt_session_event_sink *broadcast, 148 + struct xrt_device *head, 148 149 struct xrt_device *left, 149 150 struct xrt_device *right, 150 151 struct xrt_device **xdevs, ··· 233 234 234 235 *out_xsysd = xsysd; 235 236 u_builder_create_space_overseer_legacy( // 237 + broadcast, // broadcast 236 238 ubrh.head, // head 237 239 ubrh.left, // left 238 240 ubrh.right, // right
+2 -1
src/xrt/auxiliary/util/u_builders.h
··· 167 167 * @ingroup aux_util 168 168 */ 169 169 void 170 - u_builder_create_space_overseer_legacy(struct xrt_device *head, 170 + u_builder_create_space_overseer_legacy(struct xrt_session_event_sink *broadcast, 171 + struct xrt_device *head, 171 172 struct xrt_device *left, 172 173 struct xrt_device *right, 173 174 struct xrt_device **xdevs,
+1
src/xrt/targets/common/target_builder_steamvr.c
··· 169 169 170 170 *out_xsysd = xsysd; 171 171 u_builder_create_space_overseer_legacy( // 172 + broadcast, // broadcast 172 173 head, // head 173 174 left, // left 174 175 right, // right
+1
src/xrt/targets/sdl_test/sdl_instance.c
··· 146 146 sp->xsysd_base.static_roles.head = head; 147 147 148 148 u_builder_create_space_overseer_legacy( // 149 + &sp->usys->broadcast, // broadcast 149 150 head, // head 150 151 NULL, // left 151 152 NULL, // right