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 | * |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016 The Khronos Group Inc. |
| 4 | * Copyright (c) 2014-2016 Valve Corporation |
| 5 | * Copyright (c) 2014-2016 LunarG, Inc. |
Courtney Goeltzenleuchter | 8e1b8d9 | 2015-12-02 14:53:22 -0700 | [diff] [blame] | 6 | * Copyright (C) 2015 Google Inc. |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 7 | * |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 8 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 9 | * of this software and/or associated documentation files (the "Materials"), to |
| 10 | * deal in the Materials without restriction, including without limitation the |
| 11 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
| 12 | * sell copies of the Materials, and to permit persons to whom the Materials are |
| 13 | * furnished to do so, subject to the following conditions: |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 14 | * |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 15 | * The above copyright notice(s) and this permission notice shall be included in |
| 16 | * all copies or substantial portions of the Materials. |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 17 | * |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 18 | * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
Chia-I Wu | d8ab1e6 | 2014-09-02 08:32:09 +0800 | [diff] [blame] | 21 | * |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 22 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| 23 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 24 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE |
| 25 | * USE OR OTHER DEALINGS IN THE MATERIALS. |
| 26 | * |
| 27 | * Author: Jon Ashburn <jon@lunarg.com> |
| 28 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
Courtney Goeltzenleuchter | b9ce395 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 29 | * Author: Chia-I Wu <olvaffe@gmail.com> |
| 30 | * Author: Chia-I Wu <olv@lunarg.com> |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 31 | * Author: Mark Lobodzinski <mark@LunarG.com> |
Courtney Goeltzenleuchter | b9ce395 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 32 | * |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 33 | */ |
| 34 | |
| 35 | #ifndef LOADER_H |
| 36 | #define LOADER_H |
| 37 | |
David Pinedo | a503662 | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 38 | #include <vulkan/vulkan.h> |
Aaron Karp | 95c5f95 | 2016-03-13 16:41:59 -0400 | [diff] [blame] | 39 | #include "vk_loader_platform.h" |
Ian Elliott | afaf185 | 2015-11-17 17:29:40 -0700 | [diff] [blame] | 40 | |
David Pinedo | a503662 | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 41 | #include <vulkan/vk_layer.h> |
| 42 | #include <vulkan/vk_icd.h> |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 43 | #include <assert.h> |
| 44 | |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 45 | #if defined(__GNUC__) && __GNUC__ >= 4 |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 46 | #define LOADER_EXPORT __attribute__((visibility("default"))) |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 47 | #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590) |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 48 | #define LOADER_EXPORT __attribute__((visibility("default"))) |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 49 | #else |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 50 | #define LOADER_EXPORT |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 51 | #endif |
| 52 | |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 53 | #define MAX_STRING_SIZE 1024 |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 54 | #define VK_MAJOR(version) (version >> 22) |
| 55 | #define VK_MINOR(version) ((version >> 12) & 0x3ff) |
| 56 | #define VK_PATCH(version) (version & 0xfff) |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 57 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 58 | enum layer_type { |
Jon Ashburn | 9464e77 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 59 | VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1, |
| 60 | VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2, |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 61 | VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // instance and device layer, bitwise |
Jon Ashburn | 9464e77 | 2015-07-02 16:10:32 -0600 | [diff] [blame] | 62 | VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4, |
| 63 | VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8, |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 64 | VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // instance and device layer, bitwise |
| 65 | VK_LAYER_TYPE_META_EXPLICT = 0x10, |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 66 | }; |
| 67 | |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 68 | typedef enum VkStringErrorFlagBits { |
Jon Ashburn | b1cdf2e | 2016-02-10 20:50:19 -0700 | [diff] [blame] | 69 | VK_STRING_ERROR_NONE = 0x00000000, |
| 70 | VK_STRING_ERROR_LENGTH = 0x00000001, |
| 71 | VK_STRING_ERROR_BAD_DATA = 0x00000002, |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 72 | } VkStringErrorFlagBits; |
| 73 | typedef VkFlags VkStringErrorFlags; |
| 74 | |
Jon Ashburn | b1cdf2e | 2016-02-10 20:50:19 -0700 | [diff] [blame] | 75 | static const int MaxLoaderStringLength = 256; |
| 76 | static const char UTF8_ONE_BYTE_CODE = 0xC0; |
| 77 | static const char UTF8_ONE_BYTE_MASK = 0xE0; |
| 78 | static const char UTF8_TWO_BYTE_CODE = 0xE0; |
| 79 | static const char UTF8_TWO_BYTE_MASK = 0xF0; |
| 80 | static const char UTF8_THREE_BYTE_CODE = 0xF0; |
| 81 | static const char UTF8_THREE_BYTE_MASK = 0xF8; |
| 82 | static const char UTF8_DATA_BYTE_CODE = 0x80; |
| 83 | static const char UTF8_DATA_BYTE_MASK = 0xC0; |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 84 | |
Mark Lobodzinski | b0123ea | 2016-03-15 17:23:12 -0600 | [diff] [blame] | 85 | static const char std_validation_names[8][VK_MAX_EXTENSION_NAME_SIZE] = { |
Mark Lobodzinski | 842167e | 2016-03-17 15:08:18 -0600 | [diff] [blame] | 86 | "VK_LAYER_GOOGLE_threading", "VK_LAYER_LUNARG_parameter_validation", |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 87 | "VK_LAYER_LUNARG_device_limits", "VK_LAYER_LUNARG_object_tracker", |
Mark Lobodzinski | b0123ea | 2016-03-15 17:23:12 -0600 | [diff] [blame] | 88 | "VK_LAYER_LUNARG_image", "VK_LAYER_LUNARG_core_validation", |
| 89 | "VK_LAYER_LUNARG_swapchain", "VK_LAYER_GOOGLE_unique_objects"}; |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 90 | |
Jon Ashburn | 6b00b47 | 2015-12-10 08:51:10 -0700 | [diff] [blame] | 91 | // form of all dynamic lists/arrays |
| 92 | // only the list element should be changed |
| 93 | struct loader_generic_list { |
| 94 | size_t capacity; |
| 95 | uint32_t count; |
| 96 | void *list; |
| 97 | }; |
| 98 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 99 | struct loader_extension_list { |
| 100 | size_t capacity; |
| 101 | uint32_t count; |
Jon Ashburn | b7d327c | 2015-08-04 11:14:18 -0600 | [diff] [blame] | 102 | VkExtensionProperties *list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 103 | }; |
| 104 | |
Jon Ashburn | 92cdb01 | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 105 | struct loader_dev_ext_props { |
| 106 | VkExtensionProperties props; |
| 107 | uint32_t entrypoint_count; |
| 108 | char **entrypoints; |
| 109 | }; |
| 110 | |
| 111 | struct loader_device_extension_list { |
| 112 | size_t capacity; |
| 113 | uint32_t count; |
| 114 | struct loader_dev_ext_props *list; |
| 115 | }; |
| 116 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 117 | struct loader_name_value { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 118 | char name[MAX_STRING_SIZE]; |
| 119 | char value[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | struct loader_lib_info { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 123 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 124 | uint32_t ref_count; |
| 125 | loader_platform_dl_handle lib_handle; |
| 126 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 127 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 128 | struct loader_layer_functions { |
Jon Ashburn | b2379c5 | 2015-08-04 10:22:33 -0600 | [diff] [blame] | 129 | char str_gipa[MAX_STRING_SIZE]; |
| 130 | char str_gdpa[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 131 | PFN_vkGetInstanceProcAddr get_instance_proc_addr; |
| 132 | PFN_vkGetDeviceProcAddr get_device_proc_addr; |
| 133 | }; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 134 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 135 | struct loader_layer_properties { |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 136 | VkLayerProperties info; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 137 | enum layer_type type; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 138 | char lib_name[MAX_STRING_SIZE]; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 139 | struct loader_layer_functions functions; |
| 140 | struct loader_extension_list instance_extension_list; |
Jon Ashburn | 92cdb01 | 2015-12-10 18:17:34 -0700 | [diff] [blame] | 141 | struct loader_device_extension_list device_extension_list; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 142 | struct loader_name_value disable_env_var; |
| 143 | struct loader_name_value enable_env_var; |
| 144 | }; |
| 145 | |
| 146 | struct loader_layer_list { |
| 147 | size_t capacity; |
| 148 | uint32_t count; |
| 149 | struct loader_layer_properties *list; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 150 | }; |
| 151 | |
Courtney Goeltzenleuchter | 8aff386 | 2015-07-05 12:53:31 -0600 | [diff] [blame] | 152 | struct loader_layer_library_list { |
| 153 | size_t capacity; |
| 154 | uint32_t count; |
| 155 | struct loader_lib_info *list; |
| 156 | }; |
| 157 | |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 158 | struct loader_dispatch_hash_list { |
| 159 | size_t capacity; |
| 160 | uint32_t count; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 161 | uint32_t *index; // index into the dev_ext dispatch table |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | #define MAX_NUM_DEV_EXTS 250 |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 165 | // loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.DevExt have one |
| 166 | // to one |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 167 | // correspondence; one loader_dispatch_hash_entry for one DevExt dispatch entry. |
| 168 | // Also have a one to one correspondence with functions in dev_ext_trampoline.c |
| 169 | struct loader_dispatch_hash_entry { |
| 170 | char *func_name; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 171 | struct loader_dispatch_hash_list list; // to handle hashing collisions |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 172 | }; |
| 173 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 174 | typedef void(VKAPI_PTR *PFN_vkDevExt)(VkDevice device); |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 175 | struct loader_dev_ext_dispatch_table { |
| 176 | PFN_vkDevExt DevExt[MAX_NUM_DEV_EXTS]; |
| 177 | }; |
| 178 | |
| 179 | struct loader_dev_dispatch_table { |
| 180 | VkLayerDispatchTable core_dispatch; |
| 181 | struct loader_dev_ext_dispatch_table ext_dispatch; |
| 182 | }; |
| 183 | |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 184 | /* per CreateDevice structure */ |
| 185 | struct loader_device { |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 186 | struct loader_dev_dispatch_table loader_dispatch; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 187 | VkDevice device; // device object from the icd |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 188 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 189 | uint32_t app_extension_count; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 190 | VkExtensionProperties *app_extension_props; |
| 191 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 192 | struct loader_layer_list activated_layer_list; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 193 | |
| 194 | struct loader_device *next; |
| 195 | }; |
| 196 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 197 | /* per ICD structure */ |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 198 | struct loader_icd { |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 199 | // pointers to find other structs |
| 200 | const struct loader_scanned_icds *this_icd_lib; |
| 201 | const struct loader_instance *this_instance; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 202 | struct loader_device *logical_device_list; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 203 | VkInstance instance; // instance object from the icd |
Jon Ashburn | c89dd4a | 2015-05-18 13:20:15 -0600 | [diff] [blame] | 204 | PFN_vkGetDeviceProcAddr GetDeviceProcAddr; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 205 | PFN_vkDestroyInstance DestroyInstance; |
| 206 | PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices; |
Chris Forbes | 1c946ec | 2015-06-21 22:55:02 +1200 | [diff] [blame] | 207 | PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures; |
Courtney Goeltzenleuchter | 2b6559e | 2015-07-12 12:52:09 -0600 | [diff] [blame] | 208 | PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 209 | PFN_vkGetPhysicalDeviceImageFormatProperties |
| 210 | GetPhysicalDeviceImageFormatProperties; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 211 | PFN_vkCreateDevice CreateDevice; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 212 | PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 213 | PFN_vkGetPhysicalDeviceQueueFamilyProperties |
| 214 | GetPhysicalDeviceQueueFamilyProperties; |
Tony Barbour | 4e657ba | 2015-06-24 16:06:58 -0600 | [diff] [blame] | 215 | PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties; |
Courtney Goeltzenleuchter | e25064c | 2015-09-14 17:22:16 -0600 | [diff] [blame] | 216 | PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 217 | PFN_vkGetPhysicalDeviceSparseImageFormatProperties |
| 218 | GetPhysicalDeviceSparseImageFormatProperties; |
Courtney Goeltzenleuchter | 725db94 | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 219 | PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallbackEXT; |
| 220 | PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallbackEXT; |
| 221 | PFN_vkDebugReportMessageEXT DebugReportMessageEXT; |
Ian Elliott | ec73634 | 2015-08-21 15:09:33 -0600 | [diff] [blame] | 222 | PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 223 | PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR |
| 224 | GetPhysicalDeviceSurfaceCapabilitiesKHR; |
Ian Elliott | ea666b2 | 2015-11-19 16:05:09 -0700 | [diff] [blame] | 225 | PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 226 | PFN_vkGetPhysicalDeviceSurfacePresentModesKHR |
| 227 | GetPhysicalDeviceSurfacePresentModesKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 228 | #ifdef VK_USE_PLATFORM_WIN32_KHR |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 229 | PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR |
| 230 | GetPhysicalDeviceWin32PresentationSupportKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 231 | #endif |
| 232 | #ifdef VK_USE_PLATFORM_MIR_KHR |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 233 | PFN_vkGetPhysicalDeviceMirPresentationSupportKHR |
| 234 | GetPhysicalDeviceMirPresentvationSupportKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 235 | #endif |
| 236 | #ifdef VK_USE_PLATFORM_WAYLAND_KHR |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 237 | PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR |
| 238 | GetPhysicalDeviceWaylandPresentationSupportKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 239 | #endif |
| 240 | #ifdef VK_USE_PLATFORM_XCB_KHR |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 241 | PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR |
| 242 | GetPhysicalDeviceXcbPresentationSupportKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 243 | #endif |
| 244 | #ifdef VK_USE_PLATFORM_XLIB_KHR |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 245 | PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR |
| 246 | GetPhysicalDeviceXlibPresentationSupportKHR; |
Ian Elliott | e851dd6 | 2015-11-24 15:39:10 -0700 | [diff] [blame] | 247 | #endif |
Jon Ashburn | cc370d0 | 2016-03-08 09:30:30 -0700 | [diff] [blame] | 248 | PFN_vkGetPhysicalDeviceDisplayPropertiesKHR |
| 249 | GetPhysicalDeviceDisplayPropertiesKHR; |
| 250 | PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR |
| 251 | GetPhysicalDeviceDisplayPlanePropertiesKHR; |
| 252 | PFN_vkGetDisplayPlaneSupportedDisplaysKHR |
| 253 | GetDisplayPlaneSupportedDisplaysKHR; |
| 254 | PFN_vkGetDisplayModePropertiesKHR |
| 255 | GetDisplayModePropertiesKHR; |
| 256 | PFN_vkCreateDisplayModeKHR |
| 257 | CreateDisplayModeKHR; |
| 258 | PFN_vkGetDisplayPlaneCapabilitiesKHR |
| 259 | GetDisplayPlaneCapabilitiesKHR; |
| 260 | PFN_vkCreateDisplayPlaneSurfaceKHR |
| 261 | CreateDisplayPlaneSurfaceKHR; |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 262 | struct loader_icd *next; |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 263 | }; |
| 264 | |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 265 | /* per ICD library structure */ |
| 266 | struct loader_icd_libs { |
| 267 | size_t capacity; |
| 268 | uint32_t count; |
| 269 | struct loader_scanned_icds *list; |
| 270 | }; |
| 271 | |
Jon Ashburn | 392c562 | 2015-06-10 16:11:42 -0600 | [diff] [blame] | 272 | /* per instance structure */ |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 273 | struct loader_instance { |
Jon Ashburn | ebfa25e | 2015-05-15 15:09:35 -0600 | [diff] [blame] | 274 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
| 275 | |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 276 | uint32_t total_gpu_count; // count of the next two arrays |
| 277 | struct loader_physical_device *phys_devs_term; |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 278 | struct loader_physical_device_tramp *phys_devs; // tramp wrapped physDev obj list |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 279 | uint32_t total_icd_count; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 280 | struct loader_icd *icds; |
| 281 | struct loader_instance *next; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 282 | struct loader_extension_list ext_list; // icds and loaders extensions |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 283 | struct loader_icd_libs icd_libs; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 284 | struct loader_layer_list instance_layer_list; |
| 285 | struct loader_layer_list device_layer_list; |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 286 | struct loader_dispatch_hash_entry disp_hash[MAX_NUM_DEV_EXTS]; |
Jon Ashburn | b4c2423 | 2015-08-20 16:35:30 -0600 | [diff] [blame] | 287 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 288 | struct loader_msg_callback_map_entry *icd_msg_callback_map; |
| 289 | |
Courtney Goeltzenleuchter | 44667cc | 2015-06-29 15:39:26 -0600 | [diff] [blame] | 290 | struct loader_layer_list activated_layer_list; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 291 | |
Jon Ashburn | edbe39d | 2016-03-08 15:21:30 -0700 | [diff] [blame] | 292 | VkInstance instance; // layers/ICD instance returned to trampoline |
Courtney Goeltzenleuchter | 0bd705c | 2016-01-08 12:18:43 -0700 | [diff] [blame] | 293 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 294 | bool debug_report_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 295 | VkLayerDbgFunctionNode *DbgFunctionHead; |
Ian Elliott | defd6da | 2016-03-31 10:48:19 -0600 | [diff] [blame^] | 296 | uint32_t num_tmp_callbacks; |
| 297 | VkDebugReportCallbackCreateInfoEXT *tmp_dbg_create_infos; |
| 298 | VkDebugReportCallbackEXT *tmp_callbacks; |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 299 | |
Chia-I Wu | 227c8b3 | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 300 | VkAllocationCallbacks alloc_callbacks; |
Ian Elliott | ed33eb7 | 2015-07-06 14:36:13 -0600 | [diff] [blame] | 301 | |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 302 | bool wsi_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 303 | #ifdef VK_USE_PLATFORM_WIN32_KHR |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 304 | bool wsi_win32_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 305 | #endif |
| 306 | #ifdef VK_USE_PLATFORM_MIR_KHR |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 307 | bool wsi_mir_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 308 | #endif |
| 309 | #ifdef VK_USE_PLATFORM_WAYLAND_KHR |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 310 | bool wsi_wayland_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 311 | #endif |
| 312 | #ifdef VK_USE_PLATFORM_XCB_KHR |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 313 | bool wsi_xcb_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 314 | #endif |
| 315 | #ifdef VK_USE_PLATFORM_XLIB_KHR |
Ian Elliott | 54cea23 | 2015-10-30 15:28:23 -0600 | [diff] [blame] | 316 | bool wsi_xlib_surface_enabled; |
Mark Lobodzinski | 1ad14b4 | 2015-12-10 16:25:21 -0700 | [diff] [blame] | 317 | #endif |
| 318 | #ifdef VK_USE_PLATFORM_ANDROID_KHR |
| 319 | bool wsi_android_surface_enabled; |
| 320 | #endif |
Jon Ashburn | cc370d0 | 2016-03-08 09:30:30 -0700 | [diff] [blame] | 321 | bool wsi_display_enabled; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 322 | }; |
| 323 | |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 324 | /* VkPhysicalDevice requires special treatment by loader. Firstly, terminator |
| 325 | * code must be able to get the struct loader_icd to call into the proper |
| 326 | * driver (multiple ICD/gpu case). This can be accomplished by wrapping the |
| 327 | * created VkPhysicalDevice in loader terminate_EnumeratePhysicalDevices(). |
Piers Daniell | 82107a6 | 2016-03-29 11:51:11 -0600 | [diff] [blame] | 328 | * Secondly, the loader must be able to handle wrapped by layer VkPhysicalDevice |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 329 | * in trampoline code. This implies, that the loader trampoline code must also |
| 330 | * wrap the VkPhysicalDevice object in trampoline code. Thus, loader has to |
| 331 | * wrap the VkPhysicalDevice created object twice. In trampoline code it can't |
| 332 | * rely on the terminator object wrapping since a layer may also wrap. Since |
| 333 | * trampoline code wraps the VkPhysicalDevice this means all loader trampoline |
| 334 | * code that passes a VkPhysicalDevice should unwrap it. */ |
| 335 | |
| 336 | /* per enumerated PhysicalDevice structure, used to wrap in trampoline code and |
| 337 | also same structure used to wrap in terminator code */ |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 338 | struct loader_physical_device_tramp { |
| 339 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
Piers Daniell | 82107a6 | 2016-03-29 11:51:11 -0600 | [diff] [blame] | 340 | struct loader_instance *this_instance; |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 341 | VkPhysicalDevice phys_dev; // object from layers/loader terminator |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 342 | }; |
| 343 | |
| 344 | /* per enumerated PhysicalDevice structure, used to wrap in terminator code */ |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 345 | struct loader_physical_device { |
| 346 | VkLayerInstanceDispatchTable *disp; // must be first entry in structure |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 347 | struct loader_icd *this_icd; |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 348 | VkPhysicalDevice phys_dev; // object from ICD |
Jon Ashburn | 969caa4 | 2015-11-01 14:04:06 -0700 | [diff] [blame] | 349 | }; |
| 350 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 351 | struct loader_struct { |
| 352 | struct loader_instance *instances; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 353 | |
| 354 | unsigned int loaded_layer_lib_count; |
Courtney Goeltzenleuchter | 452303a | 2015-10-07 09:00:34 -0600 | [diff] [blame] | 355 | size_t loaded_layer_lib_capacity; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 356 | struct loader_lib_info *loaded_layer_lib_list; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 357 | // TODO add ref counting of ICD libraries |
Jon Ashburn | 269b592 | 2015-07-06 15:40:35 -0600 | [diff] [blame] | 358 | // TODO use this struct loader_layer_library_list scanned_layer_libraries; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 359 | // TODO add list of icd libraries for ref counting them for closure |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 360 | }; |
| 361 | |
| 362 | struct loader_scanned_icds { |
| 363 | char *lib_name; |
| 364 | loader_platform_dl_handle handle; |
Jon Ashburn | 27109e8 | 2015-11-17 17:35:40 -0700 | [diff] [blame] | 365 | uint32_t api_version; |
Jon Ashburn | c7ca48d | 2015-07-16 10:17:29 -0600 | [diff] [blame] | 366 | PFN_vkGetInstanceProcAddr GetInstanceProcAddr; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 367 | PFN_vkCreateInstance CreateInstance; |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 368 | PFN_vkEnumerateInstanceExtensionProperties |
| 369 | EnumerateInstanceExtensionProperties; |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 370 | }; |
| 371 | |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 372 | static inline struct loader_instance *loader_instance(VkInstance instance) { |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 373 | return (struct loader_instance *)instance; |
Jon Ashburn | 399c916 | 2015-07-02 09:40:15 -0600 | [diff] [blame] | 374 | } |
| 375 | |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 376 | static inline VkPhysicalDevice |
| 377 | loader_unwrap_physical_device(VkPhysicalDevice physicalDevice) { |
Piers Daniell | a9ccaed | 2016-03-31 14:47:57 -0600 | [diff] [blame] | 378 | struct loader_physical_device_tramp *phys_dev = |
| 379 | (struct loader_physical_device_tramp *)physicalDevice; |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 380 | return phys_dev->phys_dev; |
| 381 | } |
| 382 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 383 | static inline void loader_set_dispatch(void *obj, const void *data) { |
| 384 | *((const void **)obj) = data; |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 385 | } |
| 386 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 387 | static inline VkLayerDispatchTable *loader_get_dispatch(const void *obj) { |
| 388 | return *((VkLayerDispatchTable **)obj); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 389 | } |
| 390 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 391 | static inline struct loader_dev_dispatch_table * |
| 392 | loader_get_dev_dispatch(const void *obj) { |
| 393 | return *((struct loader_dev_dispatch_table **)obj); |
Jon Ashburn | 6cb69f4 | 2015-11-17 15:31:02 -0700 | [diff] [blame] | 394 | } |
| 395 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 396 | static inline VkLayerInstanceDispatchTable * |
| 397 | loader_get_instance_dispatch(const void *obj) { |
| 398 | return *((VkLayerInstanceDispatchTable **)obj); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 399 | } |
| 400 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 401 | static inline void loader_init_dispatch(void *obj, const void *data) { |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 402 | #ifdef DEBUG |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 403 | assert(valid_loader_magic_value(obj) && |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 404 | "Incompatible ICD, first dword must be initialized to " |
| 405 | "ICD_LOADER_MAGIC. See loader/README.md for details."); |
Jon Ashburn | 167b2b1 | 2015-04-15 13:34:33 -0600 | [diff] [blame] | 406 | #endif |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 407 | |
Jon Ashburn | 62a54d1 | 2015-05-01 18:00:33 -0600 | [diff] [blame] | 408 | loader_set_dispatch(obj, data); |
Chia-I Wu | fe333ed | 2015-04-11 15:34:07 +0800 | [diff] [blame] | 409 | } |
| 410 | |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 411 | /* global variables used across files */ |
| 412 | extern struct loader_struct loader; |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 413 | extern THREAD_LOCAL_DECL struct loader_instance *tls_instance; |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 414 | extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init); |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 415 | extern loader_platform_thread_mutex loader_lock; |
Jon Ashburn | 7d4d51c | 2015-09-22 13:11:00 -0600 | [diff] [blame] | 416 | extern loader_platform_thread_mutex loader_json_lock; |
Jon Ashburn | 7e8d8b4 | 2015-05-29 13:15:39 -0600 | [diff] [blame] | 417 | extern const VkLayerInstanceDispatchTable instance_disp; |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 418 | extern const char *std_validation_str; |
Jon Ashburn | 37e7f97 | 2015-04-06 10:58:22 -0600 | [diff] [blame] | 419 | |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 420 | struct loader_msg_callback_map_entry { |
Courtney Goeltzenleuchter | 725db94 | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 421 | VkDebugReportCallbackEXT icd_obj; |
| 422 | VkDebugReportCallbackEXT loader_obj; |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 423 | }; |
| 424 | |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 425 | /* helper function definitions */ |
| 426 | void *loader_heap_alloc(const struct loader_instance *instance, size_t size, |
| 427 | VkSystemAllocationScope allocationScope); |
| 428 | |
| 429 | void loader_heap_free(const struct loader_instance *instance, void *pMemory); |
| 430 | |
| 431 | void *loader_tls_heap_alloc(size_t size); |
| 432 | |
| 433 | void loader_tls_heap_free(void *pMemory); |
| 434 | |
Jon Ashburn | 663f831 | 2016-02-12 08:20:06 -0700 | [diff] [blame] | 435 | void loader_log(const struct loader_instance *inst, VkFlags msg_type, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 436 | int32_t msg_code, const char *format, ...); |
Jon Ashburn | 663f831 | 2016-02-12 08:20:06 -0700 | [diff] [blame] | 437 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 438 | bool compare_vk_extension_properties(const VkExtensionProperties *op1, |
| 439 | const VkExtensionProperties *op2); |
Courtney Goeltzenleuchter | 67146d0 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 440 | |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 441 | VkResult loader_validate_layers(const struct loader_instance *inst, |
| 442 | const uint32_t layer_count, |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 443 | const char *const *ppEnabledLayerNames, |
| 444 | const struct loader_layer_list *list); |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 445 | |
| 446 | VkResult loader_validate_instance_extensions( |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 447 | const struct loader_instance *inst, |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 448 | const struct loader_extension_list *icd_exts, |
| 449 | const struct loader_layer_list *instance_layer, |
| 450 | const VkInstanceCreateInfo *pCreateInfo); |
Courtney Goeltzenleuchter | 76ece70 | 2015-07-06 17:45:08 -0600 | [diff] [blame] | 451 | |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 452 | void loader_initialize(void); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 453 | bool has_vk_extension_property_array(const VkExtensionProperties *vk_ext_prop, |
| 454 | const uint32_t count, |
| 455 | const VkExtensionProperties *ext_array); |
| 456 | bool has_vk_extension_property(const VkExtensionProperties *vk_ext_prop, |
| 457 | const struct loader_extension_list *ext_list); |
Jon Ashburn | 1348245 | 2015-05-12 17:26:48 -0600 | [diff] [blame] | 458 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 459 | VkResult loader_add_to_ext_list(const struct loader_instance *inst, |
| 460 | struct loader_extension_list *ext_list, |
| 461 | uint32_t prop_list_count, |
| 462 | const VkExtensionProperties *props); |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 463 | VkResult loader_add_device_extensions(const struct loader_instance *inst, |
Piers Daniell | 82107a6 | 2016-03-29 11:51:11 -0600 | [diff] [blame] | 464 | PFN_vkEnumerateDeviceExtensionProperties fpEnumerateDeviceExtensionProperties, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 465 | VkPhysicalDevice physical_device, |
| 466 | const char *lib_name, |
| 467 | struct loader_extension_list *ext_list); |
| 468 | bool loader_init_generic_list(const struct loader_instance *inst, |
| 469 | struct loader_generic_list *list_info, |
| 470 | size_t element_size); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 471 | void loader_destroy_generic_list(const struct loader_instance *inst, |
| 472 | struct loader_generic_list *list); |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 473 | void loader_destroy_layer_list(const struct loader_instance *inst, |
| 474 | struct loader_layer_list *layer_list); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 475 | void loader_delete_layer_properties(const struct loader_instance *inst, |
| 476 | struct loader_layer_list *layer_list); |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 477 | void loader_expand_layer_names( |
| 478 | const struct loader_instance *inst, const char *key_name, |
| 479 | uint32_t expand_count, |
| 480 | const char expand_names[][VK_MAX_EXTENSION_NAME_SIZE], |
| 481 | uint32_t *layer_count, char ***ppp_layer_names); |
Jon Ashburn | 31efe26 | 2016-02-11 18:59:43 -0700 | [diff] [blame] | 482 | void loader_unexpand_dev_layer_names(const struct loader_instance *inst, |
| 483 | uint32_t layer_count, char **layer_names, |
| 484 | char **layer_ptr, |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 485 | const VkDeviceCreateInfo *pCreateInfo); |
Jon Ashburn | 31efe26 | 2016-02-11 18:59:43 -0700 | [diff] [blame] | 486 | void loader_unexpand_inst_layer_names(const struct loader_instance *inst, |
| 487 | uint32_t layer_count, char **layer_names, |
| 488 | char **layer_ptr, |
Jon Ashburn | d1eb332 | 2016-02-10 20:59:26 -0700 | [diff] [blame] | 489 | const VkInstanceCreateInfo *pCreateInfo); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 490 | void loader_add_to_layer_list(const struct loader_instance *inst, |
| 491 | struct loader_layer_list *list, |
| 492 | uint32_t prop_list_count, |
| 493 | const struct loader_layer_properties *props); |
| 494 | void loader_scanned_icd_clear(const struct loader_instance *inst, |
| 495 | struct loader_icd_libs *icd_libs); |
| 496 | void loader_icd_scan(const struct loader_instance *inst, |
| 497 | struct loader_icd_libs *icds); |
| 498 | void loader_layer_scan(const struct loader_instance *inst, |
| 499 | struct loader_layer_list *instance_layers, |
| 500 | struct loader_layer_list *device_layers); |
Jon Ashburn | e036747 | 2015-08-18 18:04:47 -0600 | [diff] [blame] | 501 | void loader_get_icd_loader_instance_extensions( |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 502 | const struct loader_instance *inst, struct loader_icd_libs *icd_libs, |
| 503 | struct loader_extension_list *inst_exts); |
| 504 | struct loader_icd *loader_get_icd_and_device(const VkDevice device, |
| 505 | struct loader_device **found_dev); |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 506 | void loader_init_dispatch_dev_ext(struct loader_instance *inst, |
| 507 | struct loader_device *dev); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 508 | void *loader_dev_ext_gpa(struct loader_instance *inst, const char *funcName); |
| 509 | void *loader_get_dev_ext_trampoline(uint32_t index); |
| 510 | struct loader_instance *loader_get_instance(const VkInstance instance); |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 511 | struct loader_device * |
Piers Daniell | 82107a6 | 2016-03-29 11:51:11 -0600 | [diff] [blame] | 512 | loader_create_logical_device(const struct loader_instance *inst); |
| 513 | void loader_add_logical_device(const struct loader_instance *inst, |
| 514 | struct loader_icd *icd, |
| 515 | struct loader_device *found_dev); |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 516 | void loader_remove_logical_device(const struct loader_instance *inst, |
| 517 | struct loader_icd *icd, |
| 518 | struct loader_device *found_dev); |
| 519 | VkResult |
| 520 | loader_enable_instance_layers(struct loader_instance *inst, |
| 521 | const VkInstanceCreateInfo *pCreateInfo, |
| 522 | const struct loader_layer_list *instance_layers); |
Jon Ashburn | 10f4e82 | 2015-06-10 10:06:06 -0600 | [diff] [blame] | 523 | void loader_deactivate_instance_layers(struct loader_instance *instance); |
Courtney Goeltzenleuchter | 0bd705c | 2016-01-08 12:18:43 -0700 | [diff] [blame] | 524 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 525 | VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo, |
| 526 | const VkAllocationCallbacks *pAllocator, |
| 527 | struct loader_instance *inst, |
Jon Ashburn | d1205a9 | 2016-02-03 12:37:30 -0700 | [diff] [blame] | 528 | VkInstance *created_instance); |
Courtney Goeltzenleuchter | 0bd705c | 2016-01-08 12:18:43 -0700 | [diff] [blame] | 529 | |
Jon Ashburn | 1c75aec | 2016-02-02 17:47:28 -0700 | [diff] [blame] | 530 | void loader_activate_instance_layer_extensions(struct loader_instance *inst, |
| 531 | VkInstance created_inst); |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 532 | VkResult |
| 533 | loader_enable_device_layers(const struct loader_instance *inst, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 534 | struct loader_layer_list *activated_layer_list, |
| 535 | const VkDeviceCreateInfo *pCreateInfo, |
| 536 | const struct loader_layer_list *device_layers); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 537 | |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 538 | VkResult loader_create_device_chain(const struct loader_physical_device_tramp *pd, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 539 | const VkDeviceCreateInfo *pCreateInfo, |
| 540 | const VkAllocationCallbacks *pAllocator, |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 541 | const struct loader_instance *inst, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 542 | struct loader_device *dev); |
| 543 | VkResult loader_validate_device_extensions( |
Jon Ashburn | c3519e4 | 2016-03-24 15:49:57 -0600 | [diff] [blame] | 544 | struct loader_physical_device_tramp *phys_dev, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 545 | const struct loader_layer_list *activated_device_layers, |
Jon Ashburn | fd02a0f | 2016-03-01 19:51:07 -0700 | [diff] [blame] | 546 | const struct loader_extension_list *icd_exts, |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 547 | const VkDeviceCreateInfo *pCreateInfo); |
Courtney Goeltzenleuchter | 71b454b | 2015-07-05 11:28:29 -0600 | [diff] [blame] | 548 | |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 549 | /* instance layer chain termination entrypoint definitions */ |
| 550 | VKAPI_ATTR VkResult VKAPI_CALL |
| 551 | terminator_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, |
| 552 | const VkAllocationCallbacks *pAllocator, |
| 553 | VkInstance *pInstance); |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 554 | |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 555 | VKAPI_ATTR void VKAPI_CALL |
| 556 | terminator_DestroyInstance(VkInstance instance, |
| 557 | const VkAllocationCallbacks *pAllocator); |
Jon Ashburn | b4dee9c | 2015-08-28 15:19:27 -0600 | [diff] [blame] | 558 | |
Jon Ashburn | c4e9ae6 | 2016-02-26 13:14:27 -0700 | [diff] [blame] | 559 | VKAPI_ATTR VkResult VKAPI_CALL |
| 560 | terminator_EnumeratePhysicalDevices(VkInstance instance, |
| 561 | uint32_t *pPhysicalDeviceCount, |
| 562 | VkPhysicalDevice *pPhysicalDevices); |
| 563 | |
| 564 | VKAPI_ATTR void VKAPI_CALL |
| 565 | terminator_GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice, |
| 566 | VkPhysicalDeviceFeatures *pFeatures); |
| 567 | |
| 568 | VKAPI_ATTR void VKAPI_CALL |
| 569 | terminator_GetPhysicalDeviceFormatProperties(VkPhysicalDevice physicalDevice, |
| 570 | VkFormat format, |
| 571 | VkFormatProperties *pFormatInfo); |
| 572 | |
| 573 | VKAPI_ATTR VkResult VKAPI_CALL |
| 574 | terminator_GetPhysicalDeviceImageFormatProperties( |
| 575 | VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, |
| 576 | VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, |
| 577 | VkImageFormatProperties *pImageFormatProperties); |
| 578 | |
| 579 | VKAPI_ATTR void VKAPI_CALL |
| 580 | terminator_GetPhysicalDeviceSparseImageFormatProperties( |
| 581 | VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, |
| 582 | VkSampleCountFlagBits samples, VkImageUsageFlags usage, |
| 583 | VkImageTiling tiling, uint32_t *pNumProperties, |
| 584 | VkSparseImageFormatProperties *pProperties); |
| 585 | |
| 586 | VKAPI_ATTR void VKAPI_CALL |
| 587 | terminator_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice, |
| 588 | VkPhysicalDeviceProperties *pProperties); |
| 589 | |
| 590 | VKAPI_ATTR VkResult VKAPI_CALL terminator_EnumerateDeviceExtensionProperties( |
| 591 | VkPhysicalDevice physicalDevice, const char *pLayerName, uint32_t *pCount, |
| 592 | VkExtensionProperties *pProperties); |
| 593 | |
| 594 | VKAPI_ATTR VkResult VKAPI_CALL |
| 595 | terminator_EnumerateDeviceLayerProperties(VkPhysicalDevice physicalDevice, |
| 596 | uint32_t *pCount, |
| 597 | VkLayerProperties *pProperties); |
| 598 | |
| 599 | VKAPI_ATTR void VKAPI_CALL terminator_GetPhysicalDeviceQueueFamilyProperties( |
| 600 | VkPhysicalDevice physicalDevice, uint32_t *pCount, |
| 601 | VkQueueFamilyProperties *pProperties); |
| 602 | |
| 603 | VKAPI_ATTR void VKAPI_CALL terminator_GetPhysicalDeviceMemoryProperties( |
| 604 | VkPhysicalDevice physicalDevice, |
| 605 | VkPhysicalDeviceMemoryProperties *pProperties); |
| 606 | |
| 607 | VKAPI_ATTR VkResult VKAPI_CALL |
| 608 | terminator_CreateDevice(VkPhysicalDevice gpu, |
| 609 | const VkDeviceCreateInfo *pCreateInfo, |
| 610 | const VkAllocationCallbacks *pAllocator, |
| 611 | VkDevice *pDevice); |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 612 | |
Jon Ashburn | b1cdf2e | 2016-02-10 20:50:19 -0700 | [diff] [blame] | 613 | VkStringErrorFlags vk_string_validate(const int max_length, |
| 614 | const char *char_array); |
Mark Lobodzinski | 8d32580 | 2016-02-02 18:53:34 -0700 | [diff] [blame] | 615 | |
Chia-I Wu | c1e0f96 | 2014-08-04 08:03:57 +0800 | [diff] [blame] | 616 | #endif /* LOADER_H */ |