The open source OpenXR runtime
0
fork

Configure Feed

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

xrt: Add new input attachment swapchain usage

authored by

Jakob Bornecrantz and committed by
Jakob Bornecrantz
b64d683f ae070363

+5 -1
+3
doc/changes/xrt/mr.459.md
··· 1 + Add `XRT_SWAPCHAIN_USAGE_INPUT_ATTACHMENT` flag to `xrt_swapchain_usage_bits` 2 + so that a client can create a Vulkan swapchain that can be used as input 3 + attachment.
+2 -1
src/xrt/include/xrt/xrt_compositor.h
··· 72 72 XRT_SWAPCHAIN_USAGE_TRANSFER_SRC = 0x00000008, 73 73 XRT_SWAPCHAIN_USAGE_TRANSFER_DST = 0x00000010, 74 74 XRT_SWAPCHAIN_USAGE_SAMPLED = 0x00000020, 75 - XRT_SWAPCHAIN_USAGE_MUTABLE_FORMAT = 0x00000040 75 + XRT_SWAPCHAIN_USAGE_MUTABLE_FORMAT = 0x00000040, 76 + XRT_SWAPCHAIN_USAGE_INPUT_ATTACHMENT = 0x00000080, 76 77 }; 77 78 78 79 /*!