Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 1 | // |
| 2 | // File: vk_icd.h |
| 3 | // |
| 4 | /* |
| 5 | * Copyright (c) 2015-2016 The Khronos Group Inc. |
| 6 | * Copyright (c) 2015-2016 Valve Corporation |
| 7 | * Copyright (c) 2015-2016 LunarG, Inc. |
| 8 | * |
Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 9 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | * you may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 12 | * |
Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 14 | * |
Jon Ashburn | 3ebf125 | 2016-04-19 11:30:31 -0600 | [diff] [blame] | 15 | * Unless required by applicable law or agreed to in writing, software |
| 16 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | * See the License for the specific language governing permissions and |
| 19 | * limitations under the License. |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 20 | * |
| 21 | */ |
| 22 | |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 23 | #ifndef VKICD_H |
| 24 | #define VKICD_H |
| 25 | |
Jon Ashburn | c7d3e73 | 2016-03-08 09:30:30 -0700 | [diff] [blame] | 26 | #include "vulkan.h" |
Yamakaky | 93c76f1 | 2017-03-13 11:06:49 -0400 | [diff] [blame] | 27 | #include <stdbool.h> |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 28 | |
Mark Young | 3938987 | 2017-01-19 21:10:49 -0700 | [diff] [blame] | 29 | // Loader-ICD version negotiation API. Versions add the following features: |
| 30 | // Version 0 - Initial. Doesn't support vk_icdGetInstanceProcAddr |
| 31 | // or vk_icdNegotiateLoaderICDInterfaceVersion. |
| 32 | // Version 1 - Add support for vk_icdGetInstanceProcAddr. |
| 33 | // Version 2 - Add Loader/ICD Interface version negotiation |
| 34 | // via vk_icdNegotiateLoaderICDInterfaceVersion. |
| 35 | // Version 3 - Add ICD creation/destruction of KHR_surface objects. |
| 36 | // Version 4 - Add unknown physical device extension qyering via |
| 37 | // vk_icdGetPhysicalDeviceProcAddr. |
Mark Young | 02df1a8 | 2017-04-18 19:52:18 -0600 | [diff] [blame] | 38 | // Version 5 - Tells ICDs that the loader is now paying attention to the |
| 39 | // application version of Vulkan passed into the ApplicationInfo |
| 40 | // structure during vkCreateInstance. This will tell the ICD |
| 41 | // that if the loader is older, it should automatically fail a |
| 42 | // call for any API version > 1.0. Otherwise, the loader will |
| 43 | // manually determine if it can support the expected version. |
| 44 | #define CURRENT_LOADER_ICD_INTERFACE_VERSION 5 |
Jon Ashburn | 17b4c86 | 2016-04-25 11:09:37 -0600 | [diff] [blame] | 45 | #define MIN_SUPPORTED_LOADER_ICD_INTERFACE_VERSION 0 |
Mark Young | 3938987 | 2017-01-19 21:10:49 -0700 | [diff] [blame] | 46 | #define MIN_PHYS_DEV_EXTENSION_ICD_INTERFACE_VERSION 4 |
Jon Ashburn | 17b4c86 | 2016-04-25 11:09:37 -0600 | [diff] [blame] | 47 | typedef VkResult (VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *pVersion); |
Mark Young | 3938987 | 2017-01-19 21:10:49 -0700 | [diff] [blame] | 48 | |
| 49 | // This is defined in vk_layer.h which will be found by the loader, but if an ICD is building against this |
Lenny Komow | 0f7496d | 2017-09-05 09:21:47 -0600 | [diff] [blame] | 50 | // file directly, it won't be found. |
Mark Young | 3938987 | 2017-01-19 21:10:49 -0700 | [diff] [blame] | 51 | #ifndef PFN_GetPhysicalDeviceProcAddr |
| 52 | typedef PFN_vkVoidFunction (VKAPI_PTR *PFN_GetPhysicalDeviceProcAddr)(VkInstance instance, const char* pName); |
| 53 | #endif |
| 54 | |
Jon Ashburn | 17b4c86 | 2016-04-25 11:09:37 -0600 | [diff] [blame] | 55 | /* |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 56 | * The ICD must reserve space for a pointer for the loader's dispatch |
| 57 | * table, at the start of <each object>. |
| 58 | * The ICD must initialize this variable using the SET_LOADER_MAGIC_VALUE macro. |
| 59 | */ |
| 60 | |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 61 | #define ICD_LOADER_MAGIC 0x01CDC0DE |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 62 | |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 63 | typedef union { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 64 | uintptr_t loaderMagic; |
| 65 | void *loaderData; |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 66 | } VK_LOADER_DATA; |
| 67 | |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 68 | static inline void set_loader_magic_value(void *pNewObject) { |
| 69 | VK_LOADER_DATA *loader_info = (VK_LOADER_DATA *)pNewObject; |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 70 | loader_info->loaderMagic = ICD_LOADER_MAGIC; |
| 71 | } |
| 72 | |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 73 | static inline bool valid_loader_magic_value(void *pNewObject) { |
| 74 | const VK_LOADER_DATA *loader_info = (VK_LOADER_DATA *)pNewObject; |
Courtney Goeltzenleuchter | 2e991f8 | 2015-07-24 10:18:40 -0600 | [diff] [blame] | 75 | return (loader_info->loaderMagic & 0xffffffff) == ICD_LOADER_MAGIC; |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 76 | } |
| 77 | |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 78 | /* |
| 79 | * Windows and Linux ICDs will treat VkSurfaceKHR as a pointer to a struct that |
| 80 | * contains the platform-specific connection and surface information. |
| 81 | */ |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 82 | typedef enum { |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 83 | VK_ICD_WSI_PLATFORM_MIR, |
| 84 | VK_ICD_WSI_PLATFORM_WAYLAND, |
| 85 | VK_ICD_WSI_PLATFORM_WIN32, |
| 86 | VK_ICD_WSI_PLATFORM_XCB, |
| 87 | VK_ICD_WSI_PLATFORM_XLIB, |
Jon Ashburn | c7d3e73 | 2016-03-08 09:30:30 -0700 | [diff] [blame] | 88 | VK_ICD_WSI_PLATFORM_DISPLAY |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 89 | } VkIcdWsiPlatform; |
| 90 | |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 91 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 92 | VkIcdWsiPlatform platform; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 93 | } VkIcdSurfaceBase; |
| 94 | |
| 95 | #ifdef VK_USE_PLATFORM_MIR_KHR |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 96 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 97 | VkIcdSurfaceBase base; |
| 98 | MirConnection *connection; |
| 99 | MirSurface *mirSurface; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 100 | } VkIcdSurfaceMir; |
| 101 | #endif // VK_USE_PLATFORM_MIR_KHR |
| 102 | |
| 103 | #ifdef VK_USE_PLATFORM_WAYLAND_KHR |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 104 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 105 | VkIcdSurfaceBase base; |
| 106 | struct wl_display *display; |
| 107 | struct wl_surface *surface; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 108 | } VkIcdSurfaceWayland; |
| 109 | #endif // VK_USE_PLATFORM_WAYLAND_KHR |
| 110 | |
| 111 | #ifdef VK_USE_PLATFORM_WIN32_KHR |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 112 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 113 | VkIcdSurfaceBase base; |
| 114 | HINSTANCE hinstance; |
| 115 | HWND hwnd; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 116 | } VkIcdSurfaceWin32; |
| 117 | #endif // VK_USE_PLATFORM_WIN32_KHR |
| 118 | |
| 119 | #ifdef VK_USE_PLATFORM_XCB_KHR |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 120 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 121 | VkIcdSurfaceBase base; |
| 122 | xcb_connection_t *connection; |
| 123 | xcb_window_t window; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 124 | } VkIcdSurfaceXcb; |
| 125 | #endif // VK_USE_PLATFORM_XCB_KHR |
| 126 | |
| 127 | #ifdef VK_USE_PLATFORM_XLIB_KHR |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 128 | typedef struct { |
Karl Schultz | 37419ed | 2016-02-02 12:32:50 -0700 | [diff] [blame] | 129 | VkIcdSurfaceBase base; |
| 130 | Display *dpy; |
| 131 | Window window; |
Ian Elliott | 4d52054 | 2015-11-18 12:19:12 -0700 | [diff] [blame] | 132 | } VkIcdSurfaceXlib; |
| 133 | #endif // VK_USE_PLATFORM_XLIB_KHR |
| 134 | |
Cody Northrop | fa2f36c | 2016-09-22 14:39:16 -0600 | [diff] [blame] | 135 | #ifdef VK_USE_PLATFORM_ANDROID_KHR |
| 136 | typedef struct { |
| 137 | ANativeWindow* window; |
| 138 | } VkIcdSurfaceAndroid; |
| 139 | #endif //VK_USE_PLATFORM_ANDROID_KHR |
| 140 | |
Mark Lobodzinski | 2b46a9d | 2016-05-19 17:17:58 -0600 | [diff] [blame] | 141 | typedef struct { |
Jon Ashburn | c7d3e73 | 2016-03-08 09:30:30 -0700 | [diff] [blame] | 142 | VkIcdSurfaceBase base; |
| 143 | VkDisplayModeKHR displayMode; |
| 144 | uint32_t planeIndex; |
| 145 | uint32_t planeStackIndex; |
| 146 | VkSurfaceTransformFlagBitsKHR transform; |
| 147 | float globalAlpha; |
| 148 | VkDisplayPlaneAlphaFlagBitsKHR alphaMode; |
| 149 | VkExtent2D imageExtent; |
| 150 | } VkIcdSurfaceDisplay; |
Mark Young | 16573c7 | 2016-06-28 10:52:43 -0600 | [diff] [blame] | 151 | |
Courtney Goeltzenleuchter | 64d1a71 | 2015-04-08 18:04:29 -0600 | [diff] [blame] | 152 | #endif // VKICD_H |