The open source OpenXR runtime
0
fork

Configure Feed

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

meson: Add equirect2 to build.

authored by

Lubosz Sarnecki and committed by
Jakob Bornecrantz
663dfe89 1227c775

+10
+6
meson_options.txt
··· 101 101 value: false, 102 102 description: 'Enable support for Equirect Layers' 103 103 ) 104 + 105 + option('layer_equirect2', 106 + type: 'boolean', 107 + value: true, 108 + description: 'Enable support for Equirect2 Layers' 109 + )
+4
src/xrt/include/xrt/meson.build
··· 90 90 endif 91 91 92 92 if get_option('layer_equirect') 93 + have_conf.set('XRT_FEATURE_OPENXR_LAYER_EQUIRECT_LEGACY', true) 94 + endif 95 + 96 + if get_option('layer_equirect2') 93 97 have_conf.set('XRT_FEATURE_OPENXR_LAYER_EQUIRECT', true) 94 98 endif 95 99