The open source OpenXR runtime
0
fork

Configure Feed

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

t/legacy: Ensure all legacy drivers can be disabled [NFC]

authored by

Christoph Haag and committed by
Jakob Bornecrantz
2f4a9261 1ad168cf

+2 -1
+2 -1
src/xrt/targets/common/target_builder_legacy.c
··· 83 83 #if defined(XRT_BUILD_DRIVER_SIMULATED) 84 84 "simulated", 85 85 #endif 86 + NULL, 86 87 }; 87 88 88 89 ··· 202 203 xb->identifier = "legacy"; 203 204 xb->name = "Legacy probing system"; 204 205 xb->driver_identifiers = driver_list; 205 - xb->driver_identifier_count = ARRAY_SIZE(driver_list); 206 + xb->driver_identifier_count = ARRAY_SIZE(driver_list) - 1; 206 207 207 208 return xb; 208 209 }