Initial sources for the vulkan-wsi-layer project
authorMatteo Franchin <matteo.franchin@arm.com>
Fri, 24 May 2019 14:57:50 +0000 (15:57 +0100)
committerRaymond Smith <raymond.smith@arm.com>
Fri, 31 May 2019 14:48:05 +0000 (15:48 +0100)
commit9b698b4a2f170d87c362334f9066f73d3f9985fe
tree7f86036a2f860c5c3f4706690b5e65376373976c
Initial sources for the vulkan-wsi-layer project

This commit adds the initial sources for the vulkan-wsi-layer project:
a Vulkan layer which implements some of the Vulkan window system
integration extensions such as VK_KHR_swapchain.
The layer is designed to be GPU vendor agnostic when used as part of the
Vulkan ICD/loader architecture.

The project currently implements support for VK_EXT_headless_surface and
its dependencies. We hope to extend support for further platforms such
as Wayland and direct-to-display rendering in the future.

This initial commit collects contributions from different individuals
employed by Arm.

More information on the project (building instructions, how to
contribute, etc.) can be found on the README.md file at the top of the
project tree.

Signed-off-by: Matteo Franchin <matteo.franchin@arm.com>
22 files changed:
.clang-format [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
DCO.txt [new file with mode: 0644]
LICENSE [new file with mode: 0644]
README.md [new file with mode: 0644]
layer/VkLayer_window_system_integration.json [new file with mode: 0644]
layer/layer.cpp [new file with mode: 0644]
layer/private_data.cpp [new file with mode: 0644]
layer/private_data.hpp [new file with mode: 0644]
layer/surface_api.cpp [new file with mode: 0644]
layer/surface_api.hpp [new file with mode: 0644]
layer/swapchain_api.cpp [new file with mode: 0644]
layer/swapchain_api.hpp [new file with mode: 0644]
util/timed_semaphore.cpp [new file with mode: 0644]
util/timed_semaphore.hpp [new file with mode: 0644]
wsi/headless/surface_properties.cpp [new file with mode: 0644]
wsi/headless/surface_properties.hpp [new file with mode: 0644]
wsi/headless/swapchain.cpp [new file with mode: 0644]
wsi/headless/swapchain.hpp [new file with mode: 0644]
wsi/surface_properties.hpp [new file with mode: 0644]
wsi/swapchain_base.cpp [new file with mode: 0644]
wsi/swapchain_base.hpp [new file with mode: 0644]