The open source OpenXR runtime
0
fork

Configure Feed

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

c/util: Add C++ guards in render helpers

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2454>

authored by

Jakob Bornecrantz and committed by
Rylie Pavlik
435648a4 a4c55cbf

+9
+9
src/xrt/compositor/util/comp_render_helpers.h
··· 16 16 #include "util/comp_base.h" 17 17 #include "util/comp_render.h" 18 18 19 + #ifdef __cplusplus 20 + extern "C" { 21 + #endif 22 + 19 23 20 24 /* 21 25 * ··· 185 189 first_color_level_subresource_range); // subresource_range 186 190 } 187 191 } 192 + 193 + 194 + #ifdef __cplusplus 195 + } 196 + #endif