The open source OpenXR runtime
0
fork

Configure Feed

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

meson: add option for tracing

+10
+6
meson_options.txt
··· 93 93 description: 'Enable separate service module for OpenXR runtime' 94 94 ) 95 95 96 + option('tracing', 97 + type: 'boolean', 98 + value: false, 99 + description: 'Enable Perfetto/Percetto tracing' 100 + ) 101 + 96 102 option('layer_depth', 97 103 type: 'boolean', 98 104 value: true,
+4
src/xrt/include/xrt/meson.build
··· 124 124 build_conf.set('XRT_FEATURE_SERVICE', true) 125 125 endif 126 126 127 + if get_option('tracing') 128 + build_conf.set('XRT_FEATURE_TRACING', true) 129 + endif 130 + 127 131 if get_option('color_log') 128 132 build_conf.set('XRT_FEATURE_COLOR_LOG', true) 129 133 endif