Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 1 | /* |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 2 | * |
Courtney Goeltzenleuchter | 20f29b1 | 2015-10-29 13:50:34 -0600 | [diff] [blame] | 3 | * Copyright (C) 2015 Valve Corporation |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice shall be included |
| 13 | * in all copies or substantial portions of the Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 21 | * DEALINGS IN THE SOFTWARE. |
Chia-I Wu | d8ab1e6 | 2014-09-02 08:32:09 +0800 | [diff] [blame] | 22 | * |
Courtney Goeltzenleuchter | b9ce395 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 23 | * Author: Chia-I Wu <olvaffe@gmail.com> |
| 24 | * Author: Chia-I Wu <olv@lunarg.com> |
| 25 | * Author: Chris Forbes <chrisf@ijw.co.nz> |
| 26 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
| 27 | * Author: Jon Ashburn <jon@lunarg.com> |
| 28 | * Author: Tony Barbour <tony@LunarG.com> |
| 29 | * |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 30 | */ |
| 31 | |
| 32 | #ifndef LOADER_H |
| 33 | #define LOADER_H |
| 34 | |
David Pinedo | a503662 | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 35 | #include <vulkan/vulkan.h> |
Jon Ashburn | 3708e79 | 2015-11-06 11:02:40 -0700 | [diff] [blame] | 36 | #include <vk_loader_platform.h> |
David Pinedo | a503662 | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 37 | #include <vulkan/vk_debug_report_lunarg.h> |
| 38 | #include <vulkan/vk_ext_khr_swapchain.h> |
| 39 | #include <vulkan/vk_layer.h> |
| 40 | #include <vulkan/vk_icd.h> |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 41 | #include <assert.h> |
| 42 | |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 43 | #if defined(__GNUC__) && __GNUC__ >= 4 |
| 44 | # define LOADER_EXPORT __attribute__((visibility("default"))) |
| 45 | #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590) |
| 46 | # define LOADER_EXPORT __attribute__((visibility("default"))) |
| 47 | #else |
| 48 | # define LOADER_EXPORT |
| 49 | #endif |
| 50 | |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 51 | #define MAX_STRING_SIZE 1024 |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 52 | #define VK_MAJOR(version) (version >> 22) |
| 53 | #define VK_MINOR(version) ((version >> 12) & 0x3ff) |
| 54 | #define VK_PATCH(version) (version & 0xfff) |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 55 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 56 | enum layer_type { |
Jon Ashburn | 9464e77 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 57 | VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1, |
| 58 | VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2, |
| 59 | VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // both instance and device layer, bitwise |
| 60 | VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4, |
| 61 | VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8, |
| 62 | VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // both instance and device layer, bitwise |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 63 | }; |
| 64 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 65 | struct loader_extension_list { |
| 66 | size_t capacity; |
| 67 | uint32_t count; |
Jon Ashburn | b7d327c | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 68 | VkExtensionProperties *list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 69 | }; |
| 70 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 71 | struct loader_name_value { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 72 | char name[MAX_STRING_SIZE]; |
| 73 | char value[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | struct loader_lib_info { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 77 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 78 | uint32_t ref_count; |
| 79 | loader_platform_dl_handle lib_handle; |
| 80 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 81 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 82 | struct loader_layer_functions { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 83 | char str_gipa[MAX_STRING_SIZE]; |
| 84 | char str_gdpa[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 85 | PFN_vkGetInstanceProcAddr get_instance_proc_addr; |
| 86 | PFN_vkGetDeviceProcAddr get_device_proc_addr; |
| 87 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 88 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 89 | struct loader_layer_properties { |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 90 | VkLayerProperties info; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 91 | enum layer_type type; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 92 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 93 | struct loader_layer_functions functions; |
| 94 | struct loader_extension_list instance_extension_list; |
| 95 | struct loader_extension_list device_extension_list; |
| 96 | struct loader_name_value disable_env_var; |
| 97 | struct loader_name_value enable_env_var; |
| 98 | }; |
| 99 | |
| 100 | struct loader_layer_list { |
| 101 | size_t capacity; |
| 102 | uint32_t count; |
| 103 | struct loader_layer_properties *list; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 104 | }; |
| 105 | |
Courtney Goeltzenleuchter | 8aff386 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 106 | struct loader_layer_library_list { |
| 107 | size_t capacity; |
| 108 | uint32_t count; |
| 109 | struct loader_lib_info *list; |
| 110 | }; |
| 111 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 112 | /* per CreateDevice structure */ |
| 113 | struct loader_device { |
| 114 | VkLayerDispatchTable loader_dispatch; |
| 115 | VkDevice device; // device object from the icd |
| 116 | |
| 117 | uint32_t app_extension_count; |
| 118 | VkExtensionProperties *app_extension_props; |
| 119 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 120 | struct loader_layer_list activated_layer_list; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 121 | |
| 122 | struct loader_device *next; |
| 123 | }; |
| 124 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 125 | /* per ICD structure */ |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 126 | struct loader_icd { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 127 | // pointers to find other structs |
| 128 | const struct loader_scanned_icds *this_icd_lib; |
| 129 | const struct loader_instance *this_instance; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 130 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 131 | struct loader_device *logical_device_list; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 132 | VkInstance instance; // instance object from the icd |
Jon Ashburn | c89dd4a | 2015-05-18 13:20:15 -0600 | [diff] [blame] | 133 | PFN_vkGetDeviceProcAddr GetDeviceProcAddr; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 134 | PFN_vkDestroyInstance DestroyInstance; |
| 135 | PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices; |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 136 | PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures; |
Courtney Goeltzenleuchter | 2b6559e | 2015-07-12 12:52:09 -0600 | [diff] [blame] | 137 | PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties; |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 138 | PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 139 | PFN_vkCreateDevice CreateDevice; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 140 | PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties; |
Cody Northrop | fc4ad13 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 141 | PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 142 | PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties; |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 143 | PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties; |
Mark Lobodzinski | 0c708be | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 144 | PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 145 | PFN_vkDbgCreateMsgCallback DbgCreateMsgCallback; |
| 146 | PFN_vkDbgDestroyMsgCallback DbgDestroyMsgCallback; |
Ian Elliott | ec73634 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 147 | PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR; |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 148 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 149 | struct loader_icd *next; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 150 | }; |
| 151 | |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 152 | /* per ICD library structure */ |
| 153 | struct loader_icd_libs { |
| 154 | size_t capacity; |
| 155 | uint32_t count; |
| 156 | struct loader_scanned_icds *list; |
| 157 | }; |
| 158 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 159 | /* per instance structure */ |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 160 | struct loader_instance { |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 161 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
| 162 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 163 | uint32_t total_gpu_count; |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 164 | struct loader_physical_device *phys_devs; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 165 | uint32_t total_icd_count; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 166 | struct loader_icd *icds; |
| 167 | struct loader_instance *next; |
Jon Ashburn | e503a7d | 2015-08-14 14:49:22 -0600 | [diff] [blame] | 168 | struct loader_extension_list ext_list; // icds and loaders extensions |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 169 | struct loader_icd_libs icd_libs; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 170 | struct loader_layer_list instance_layer_list; |
| 171 | struct loader_layer_list device_layer_list; |
| 172 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 173 | struct loader_msg_callback_map_entry *icd_msg_callback_map; |
| 174 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 175 | struct loader_layer_list activated_layer_list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 176 | |
| 177 | bool debug_report_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 178 | VkLayerDbgFunctionNode *DbgFunctionHead; |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 179 | |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 180 | VkAllocationCallbacks alloc_callbacks; |
Ian Elliott | ed33eb7 | 2015-07-06 14:36:13 -0600 | [diff] [blame] | 181 | |
| 182 | bool wsi_swapchain_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 183 | }; |
| 184 | |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 185 | /* per enumerated PhysicalDevice structure */ |
| 186 | struct loader_physical_device { |
| 187 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
| 188 | struct loader_instance *this_instance; |
| 189 | struct loader_icd *this_icd; |
| 190 | VkPhysicalDevice phys_dev; // object from ICD |
| 191 | /* |
| 192 | * Fill in the cache of available device extensions from |
Jon Ashburn | a1981ff | 2015-11-02 17:40:01 -0700 | [diff] [blame] | 193 | * this physical device. This cache can be used during CreateDevice |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 194 | */ |
| 195 | struct loader_extension_list device_extension_cache; |
| 196 | }; |
| 197 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 198 | struct loader_struct { |
| 199 | struct loader_instance *instances; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 200 | |
| 201 | unsigned int loaded_layer_lib_count; |
Courtney Goeltzenleuchter | 452303a | 2015-10-07 09:00:34 -0600 | [diff] [blame] | 202 | size_t loaded_layer_lib_capacity; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 203 | struct loader_lib_info *loaded_layer_lib_list; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 204 | // TODO add ref counting of ICD libraries |
Jon Ashburn | 269b592 | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 205 | // TODO use this struct loader_layer_library_list scanned_layer_libraries; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 206 | // TODO add list of icd libraries for ref counting them for closure |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | struct loader_scanned_icds { |
| 210 | char *lib_name; |
| 211 | loader_platform_dl_handle handle; |
| 212 | |
Jon Ashburn | c7ca48d | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 213 | PFN_vkGetInstanceProcAddr GetInstanceProcAddr; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 214 | PFN_vkCreateInstance CreateInstance; |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 215 | PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 216 | }; |
| 217 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 218 | static inline struct loader_instance *loader_instance(VkInstance instance) { |
| 219 | return (struct loader_instance *) instance; |
| 220 | } |
| 221 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 222 | static inline void loader_set_dispatch(void* obj, const void *data) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 223 | { |
| 224 | *((const void **) obj) = data; |
| 225 | } |
| 226 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 227 | static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 228 | { |
Jon Ashburn | 62a54d1 | 2015-05-01 18:00:33 -0600 | [diff] [blame] | 229 | return *((VkLayerDispatchTable **) obj); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 230 | } |
| 231 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 232 | static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj) |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 233 | { |
| 234 | return *((VkLayerInstanceDispatchTable **) obj); |
| 235 | } |
| 236 | |
Tony Barbour | 303615c | 2015-07-03 10:33:54 -0600 | [diff] [blame] | 237 | static inline void loader_init_dispatch(void* obj, const void *data) |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 238 | { |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 239 | #ifdef DEBUG |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 240 | assert(valid_loader_magic_value(obj) && |
| 241 | "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details."); |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 242 | #endif |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 243 | |
Jon Ashburn | 62a54d1 | 2015-05-01 18:00:33 -0600 | [diff] [blame] | 244 | loader_set_dispatch(obj, data); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 245 | } |
| 246 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 247 | /* global variables used across files */ |
| 248 | extern struct loader_struct loader; |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 249 | extern THREAD_LOCAL_DECL struct loader_instance *tls_instance; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 250 | extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init); |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 251 | extern loader_platform_thread_mutex loader_lock; |
Jon Ashburn | 7d4d51c | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 252 | extern loader_platform_thread_mutex loader_json_lock; |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 253 | extern const VkLayerInstanceDispatchTable instance_disp; |
Jon Ashburn | 37e7f97 | 2015-04-06 10:58:22 -0600 | [diff] [blame] | 254 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 255 | struct loader_msg_callback_map_entry { |
| 256 | VkDbgMsgCallback icd_obj; |
| 257 | VkDbgMsgCallback loader_obj; |
| 258 | }; |
| 259 | |
| 260 | bool compare_vk_extension_properties( |
| 261 | const VkExtensionProperties* op1, |
| 262 | const VkExtensionProperties* op2); |
| 263 | |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 264 | VkResult loader_validate_layers( |
| 265 | const uint32_t layer_count, |
| 266 | const char * const *ppEnabledLayerNames, |
| 267 | const struct loader_layer_list *list); |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 268 | |
| 269 | VkResult loader_validate_instance_extensions( |
Jon Ashburn | 555d2ed | 2015-08-14 11:57:54 -0600 | [diff] [blame] | 270 | const struct loader_extension_list *icd_exts, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 271 | const struct loader_layer_list *instance_layer, |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 272 | const VkInstanceCreateInfo* pCreateInfo); |
| 273 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 274 | /* instance layer chain termination entrypoint definitions */ |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 275 | VkResult VKAPI loader_CreateInstance( |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 276 | const VkInstanceCreateInfo* pCreateInfo, |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 277 | const VkAllocationCallbacks* pAllocator, |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 278 | VkInstance* pInstance); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 279 | |
Mark Lobodzinski | 025eade | 2015-09-07 13:59:43 -0600 | [diff] [blame] | 280 | void VKAPI loader_DestroyInstance( |
Chia-I Wu | 221ca47 | 2015-10-26 21:10:41 +0800 | [diff] [blame] | 281 | VkInstance instance, |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 282 | const VkAllocationCallbacks* pAllocator); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 283 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 284 | VkResult VKAPI loader_EnumeratePhysicalDevices( |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 285 | VkInstance instance, |
| 286 | uint32_t* pPhysicalDeviceCount, |
| 287 | VkPhysicalDevice* pPhysicalDevices); |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 288 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 289 | void VKAPI loader_GetPhysicalDeviceFeatures( |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 290 | VkPhysicalDevice physicalDevice, |
| 291 | VkPhysicalDeviceFeatures* pFeatures); |
| 292 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 293 | void VKAPI loader_GetPhysicalDeviceFormatProperties( |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 294 | VkPhysicalDevice physicalDevice, |
| 295 | VkFormat format, |
| 296 | VkFormatProperties* pFormatInfo); |
| 297 | |
Chia-I Wu | ef653f6 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 298 | VkResult VKAPI loader_GetPhysicalDeviceImageFormatProperties( |
| 299 | VkPhysicalDevice physicalDevice, |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 300 | VkFormat format, |
| 301 | VkImageType type, |
| 302 | VkImageTiling tiling, |
| 303 | VkImageUsageFlags usage, |
Courtney Goeltzenleuchter | 4743d00 | 2015-09-10 13:44:12 -0600 | [diff] [blame] | 304 | VkImageCreateFlags flags, |
Jon Ashburn | 25c1145 | 2015-07-23 18:49:07 -0600 | [diff] [blame] | 305 | VkImageFormatProperties* pImageFormatProperties); |
| 306 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 307 | void VKAPI loader_GetPhysicalDeviceSparseImageFormatProperties( |
Mark Lobodzinski | 0c708be | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 308 | VkPhysicalDevice physicalDevice, |
| 309 | VkFormat format, |
| 310 | VkImageType type, |
Chia-I Wu | bb2b5b3 | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 311 | VkSampleCountFlagBits samples, |
Mark Lobodzinski | 0c708be | 2015-07-03 15:58:09 -0600 | [diff] [blame] | 312 | VkImageUsageFlags usage, |
| 313 | VkImageTiling tiling, |
| 314 | uint32_t* pNumProperties, |
| 315 | VkSparseImageFormatProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 316 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 317 | void VKAPI loader_GetPhysicalDeviceProperties ( |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 318 | VkPhysicalDevice physicalDevice, |
| 319 | VkPhysicalDeviceProperties* pProperties); |
| 320 | |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 321 | VkResult VKAPI loader_EnumerateDeviceExtensionProperties (VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 322 | const char *pLayerName, uint32_t *pCount, |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 323 | VkExtensionProperties* pProperties); |
| 324 | |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 325 | VkResult VKAPI loader_EnumerateDeviceLayerProperties (VkPhysicalDevice physicalDevice, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 326 | uint32_t *pCount, |
| 327 | VkLayerProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 328 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 329 | void VKAPI loader_GetPhysicalDeviceQueueFamilyProperties ( |
Cody Northrop | fc4ad13 | 2015-08-03 17:04:53 -0600 | [diff] [blame] | 330 | VkPhysicalDevice physicalDevice, |
| 331 | uint32_t* pCount, |
| 332 | VkQueueFamilyProperties* pProperties); |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 333 | |
Courtney Goeltzenleuchter | e2e76fa | 2015-10-20 16:40:38 -0600 | [diff] [blame] | 334 | void VKAPI loader_GetPhysicalDeviceMemoryProperties ( |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 335 | VkPhysicalDevice physicalDevice, |
| 336 | VkPhysicalDeviceMemoryProperties * pProperties); |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 337 | |
Dan Ginsburg | a2d864e | 2015-07-23 13:15:00 -0400 | [diff] [blame] | 338 | VkResult VKAPI loader_CreateDevice( |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 339 | VkPhysicalDevice gpu, |
| 340 | const VkDeviceCreateInfo* pCreateInfo, |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 341 | const VkAllocationCallbacks* pAllocator, |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 342 | VkDevice* pDevice); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 343 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 344 | /* helper function definitions */ |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 345 | void loader_initialize(void); |
Jon Ashburn | 02a8d6e | 2015-07-02 12:59:25 -0600 | [diff] [blame] | 346 | bool has_vk_extension_property_array( |
| 347 | const VkExtensionProperties *vk_ext_prop, |
| 348 | const uint32_t count, |
| 349 | const VkExtensionProperties *ext_array); |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 350 | bool has_vk_extension_property( |
| 351 | const VkExtensionProperties *vk_ext_prop, |
| 352 | const struct loader_extension_list *ext_list); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 353 | |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 354 | VkResult loader_add_to_ext_list( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 355 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 356 | struct loader_extension_list *ext_list, |
| 357 | uint32_t prop_list_count, |
Jon Ashburn | b7d327c | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 358 | const VkExtensionProperties *props); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 359 | void loader_destroy_ext_list( |
| 360 | const struct loader_instance *inst, |
| 361 | struct loader_extension_list *ext_info); |
| 362 | void loader_delete_layer_properties( |
| 363 | const struct loader_instance *inst, |
| 364 | struct loader_layer_list *layer_list); |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 365 | void loader_add_to_layer_list( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 366 | const struct loader_instance *inst, |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 367 | struct loader_layer_list *list, |
| 368 | uint32_t prop_list_count, |
| 369 | const struct loader_layer_properties *props); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 370 | void loader_scanned_icd_clear( |
| 371 | const struct loader_instance *inst, |
| 372 | struct loader_icd_libs *icd_libs); |
| 373 | void loader_icd_scan( |
| 374 | const struct loader_instance *inst, |
| 375 | struct loader_icd_libs *icds); |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 376 | void loader_layer_scan( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 377 | const struct loader_instance *inst, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 378 | struct loader_layer_list *instance_layers, |
| 379 | struct loader_layer_list *device_layers); |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 380 | void loader_get_icd_loader_instance_extensions( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 381 | const struct loader_instance *inst, |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 382 | struct loader_icd_libs *icd_libs, |
| 383 | struct loader_extension_list *inst_exts); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 384 | struct loader_icd *loader_get_icd_and_device( |
| 385 | const VkDevice device, |
| 386 | struct loader_device **found_dev); |
Jon Ashburn | 8a7e562 | 2015-09-30 12:56:42 -0600 | [diff] [blame] | 387 | struct loader_instance *loader_get_instance( |
| 388 | const VkInstance instance); |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 389 | void loader_remove_logical_device( |
| 390 | const struct loader_instance *inst, |
| 391 | VkDevice device); |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 392 | VkResult loader_enable_instance_layers( |
| 393 | struct loader_instance *inst, |
| 394 | const VkInstanceCreateInfo *pCreateInfo, |
| 395 | const struct loader_layer_list *instance_layers); |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 396 | void loader_deactivate_instance_layers(struct loader_instance *instance); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 397 | uint32_t loader_activate_instance_layers(struct loader_instance *inst); |
Courtney Goeltzenleuchter | 1c51240 | 2015-06-17 20:51:59 -0600 | [diff] [blame] | 398 | void loader_activate_instance_layer_extensions(struct loader_instance *inst); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 399 | |
| 400 | void* loader_heap_alloc( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 401 | const struct loader_instance *instance, |
Jon Ashburn | f6a6970 | 2015-08-11 14:49:54 -0600 | [diff] [blame] | 402 | size_t size, |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 403 | VkSystemAllocationScope allocationScope); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 404 | |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 405 | void loader_heap_free( |
Jon Ashburn | 8fd9081 | 2015-08-28 13:38:21 -0600 | [diff] [blame] | 406 | const struct loader_instance *instance, |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 407 | void *pMemory); |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 408 | |
| 409 | void *loader_tls_heap_alloc(size_t size); |
| 410 | |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 411 | void loader_tls_heap_free(void *pMemory); |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 412 | #endif /* LOADER_H */ |