doc: Add changelog snippets for !444

This commit is contained in:
Jakob Bornecrantz 2020-07-20 17:24:32 +01:00
parent 536e461776
commit 65a9c27f20
7 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,2 @@
u/vk: Remove unused vk_image struct, this is later recreated for the image
allocator code.

View file

@ -0,0 +1,2 @@
u/vk: Add a new image allocate helper, this is used by the main compositor to
create, export and import swapchain images.

View file

@ -0,0 +1,2 @@
generation: Fix handling 'in_handle' by adding a extra sync round-trip, this
might be solvable by using `SOCK_SEQPACKET`.

View file

@ -0,0 +1,2 @@
Implement the `xrt_compositor::import_swapchain` function, uses the earlier
`in_handle` work.

View file

@ -0,0 +1,2 @@
Make some fields on `xrt_gl_swapchain` and `xrt_vk_swapchain` private moving
them into the client compositor code instead of exposing them.

View file

@ -0,0 +1,2 @@
Make `xrt_compositor::create_swapchain` return xrt_result_t instead of the
swapchain, this makes the methods on `xrt_compositor` more uniform.

View file

@ -0,0 +1,3 @@
Add the method `xrt_compositor::import_swapchain` allowing a state tracker to
create a swapchain from a set of pre-allocated images. Uses the same
`xrt_swapchain_create_info` as `xrt_compositor::create_swapchain`.