The open source OpenXR runtime
0
fork

Configure Feed

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

t/common: Put simulated, remote and qwerty higher up in list

+12 -12
+12 -12
src/xrt/targets/common/target_lists.c
··· 96 96 * Builders 97 97 */ 98 98 xrt_builder_create_func_t target_builder_list[] = { 99 + #ifdef T_BUILDER_QWERTY // High up to override any real hardware. 100 + t_builder_qwerty_create, 101 + #endif // T_BUILDER_QWERTY 102 + 103 + #ifdef T_BUILDER_REMOTE // High up to override any real hardware. 104 + t_builder_remote_create, 105 + #endif // T_BUILDER_REMOTE 106 + 107 + #ifdef T_BUILDER_SIMULATED // High up to override any real hardware. 108 + t_builder_simulated_create, 109 + #endif // T_BUILDER_SIMULATED 110 + 99 111 #ifdef XRT_BUILD_DRIVER_RIFT_S 100 112 rift_s_builder_create, 101 113 #endif // XRT_BUILD_DRIVER_RIFT_S ··· 104 116 t_builder_rgb_tracking_create, 105 117 #endif // T_BUILDER_RGB_TRACKING 106 118 107 - #ifdef T_BUILDER_QWERTY 108 - t_builder_qwerty_create, 109 - #endif // T_BUILDER_QWERTY 110 - 111 - #ifdef T_BUILDER_SIMULATED 112 - t_builder_simulated_create, 113 - #endif // T_BUILDER_SIMULATED 114 - 115 119 #ifdef T_BUILDER_SIMULAVR 116 120 t_builder_simula_create, 117 121 #endif // T_BUILDER_SIMULAVR ··· 119 123 #ifdef T_BUILDER_LIGHTHOUSE 120 124 t_builder_lighthouse_create, 121 125 #endif // T_BUILDER_LIGHTHOUSE 122 - 123 - #ifdef T_BUILDER_REMOTE 124 - t_builder_remote_create, 125 - #endif // T_BUILDER_REMOTE 126 126 127 127 #ifdef T_BUILDER_NS 128 128 t_builder_north_star_create,