Add VkIcdSurfaceImagePipe and VK_ICD_WSI_PLATFORM_FUCHSIA

This allows the loader to implement its part of the
VK_FUCHSIA_image_pipe extension.
This commit is contained in:
John Bauman 2022-11-17 19:59:26 +00:00 committed by Juan Ramos
parent b7a86d3b2b
commit 974db1cede

View file

@ -123,6 +123,7 @@ typedef enum {
VK_ICD_WSI_PLATFORM_VI,
VK_ICD_WSI_PLATFORM_GGP,
VK_ICD_WSI_PLATFORM_SCREEN,
VK_ICD_WSI_PLATFORM_FUCHSIA,
} VkIcdWsiPlatform;
typedef struct {
@ -242,4 +243,10 @@ typedef struct {
} VkIcdSurfaceScreen;
#endif // VK_USE_PLATFORM_SCREEN_QNX
#ifdef VK_USE_PLATFORM_FUCHSIA
typedef struct {
VkIcdSurfaceBase base;
} VkIcdSurfaceImagePipe;
#endif // VK_USE_PLATFORM_FUCHSIA
#endif // VKICD_H