mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-04-14 16:20:44 +00:00
headers: Add metal surface support to ICD header
This commit is contained in:
parent
5b44df19e0
commit
ba091ba6a9
1 changed files with 9 additions and 1 deletions
|
@ -89,7 +89,8 @@ typedef enum {
|
|||
VK_ICD_WSI_PLATFORM_MACOS,
|
||||
VK_ICD_WSI_PLATFORM_IOS,
|
||||
VK_ICD_WSI_PLATFORM_DISPLAY,
|
||||
VK_ICD_WSI_PLATFORM_HEADLESS
|
||||
VK_ICD_WSI_PLATFORM_HEADLESS,
|
||||
VK_ICD_WSI_PLATFORM_METAL,
|
||||
} VkIcdWsiPlatform;
|
||||
|
||||
typedef struct {
|
||||
|
@ -172,4 +173,11 @@ typedef struct {
|
|||
VkIcdSurfaceBase base;
|
||||
} VkIcdSurfaceHeadless;
|
||||
|
||||
#ifdef VK_USE_PLATFORM_METAL_EXT
|
||||
typedef struct {
|
||||
VkIcdSurfaceBase base;
|
||||
const CAMetalLayer *pLayer;
|
||||
} VkIcdSurfaceMetal;
|
||||
#endif // VK_USE_PLATFORM_METAL_EXT
|
||||
|
||||
#endif // VKICD_H
|
||||
|
|
Loading…
Add table
Reference in a new issue