The open source OpenXR runtime
0
fork

Configure Feed

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

c/main: Silence warnings and make sure that layer configs are picked up

+11
+4
doc/changes/compositor/mr.620.md
··· 1 + --- 2 + - mr.620 3 + - mr.624 4 + --- 1 5 Implement support for XR_KHR_composition_layer_equirect (equirect1).
+6
src/xrt/compositor/main/comp_compositor.c
··· 540 540 comp_renderer_set_equirect2_layer(c->r, i, image, data); 541 541 } break; 542 542 #endif 543 + #ifndef XRT_FEATURE_OPENXR_LAYER_EQUIRECT1 544 + case XRT_LAYER_EQUIRECT1: 545 + #endif 546 + #ifndef XRT_FEATURE_OPENXR_LAYER_EQUIRECT2 547 + case XRT_LAYER_EQUIRECT2: 548 + #endif 543 549 case XRT_LAYER_CUBE: 544 550 // Should never end up here. 545 551 assert(false);
+1
src/xrt/compositor/main/comp_compositor.h
··· 11 11 #pragma once 12 12 13 13 #include "xrt/xrt_gfx_vk.h" 14 + #include "xrt/xrt_config_build.h" 14 15 15 16 #include "util/u_threading.h" 16 17 #include "util/u_index_fifo.h"