diff --git a/doc/changes/xrt/mr.454.md b/doc/changes/xrt/mr.454.md new file mode 100644 index 000000000..53f63f4c5 --- /dev/null +++ b/doc/changes/xrt/mr.454.md @@ -0,0 +1 @@ +Make `xrt_swapchain_create_flags` swapchain static image bit match OpenXR. diff --git a/src/xrt/include/xrt/xrt_compositor.h b/src/xrt/include/xrt/xrt_compositor.h index b148a7c96..df768155c 100644 --- a/src/xrt/include/xrt/xrt_compositor.h +++ b/src/xrt/include/xrt/xrt_compositor.h @@ -55,7 +55,7 @@ typedef uint64_t VkDeviceMemory; */ enum xrt_swapchain_create_flags { - XRT_SWAPCHAIN_CREATE_STATIC_IMAGE = (1 << 0), + XRT_SWAPCHAIN_CREATE_STATIC_IMAGE = (1 << 1), }; /*!