blob: 6b3503c98df921efd8f03b6decd9bc883268115e [file] [log] [blame]
Chia-I Wuc1e0f962014-08-04 08:03:57 +08001/*
Courtney Goeltzenleuchter0b018602015-04-08 15:36:08 -06002 * Vulkan
Chia-I Wuc1e0f962014-08-04 08:03:57 +08003 *
4 * Copyright (C) 2014 LunarG, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
Chia-I Wud8ab1e62014-09-02 08:32:09 +080023 *
24 * Authors:
25 * Chia-I Wu <olv@lunarg.com>
Chia-I Wuc1e0f962014-08-04 08:03:57 +080026 */
27
28#ifndef LOADER_H
29#define LOADER_H
30
Courtney Goeltzenleuchter0b018602015-04-08 15:36:08 -060031#include <vulkan.h>
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060032#include <vk_debug_report_lunarg.h>
Ian Elliotted33eb72015-07-06 14:36:13 -060033#include <vk_wsi_swapchain.h>
Tobin Ehlis7ad5aca2015-07-03 09:42:57 -060034#include <vk_layer.h>
35#include <vk_icd.h>
Chia-I Wufe333ed2015-04-11 15:34:07 +080036#include <assert.h>
37
Chia-I Wuc1e0f962014-08-04 08:03:57 +080038#if defined(__GNUC__) && __GNUC__ >= 4
39# define LOADER_EXPORT __attribute__((visibility("default")))
40#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
41# define LOADER_EXPORT __attribute__((visibility("default")))
42#else
43# define LOADER_EXPORT
44#endif
45
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -060046#define MAX_EXTENSION_NAME_SIZE (VK_MAX_EXTENSION_NAME-1)
Jon Ashburn10f4e822015-06-10 10:06:06 -060047#define MAX_GPUS_PER_ICD 16
Jon Ashburnb2379c52015-08-04 10:22:33 -060048#define MAX_STRING_SIZE 1024
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -060049#define VK_MAJOR(version) (version >> 22)
50#define VK_MINOR(version) ((version >> 12) & 0x3ff)
51#define VK_PATCH(version) (version & 0xfff)
Jon Ashburn13482452015-05-12 17:26:48 -060052
Jon Ashburn399c9162015-07-02 09:40:15 -060053enum layer_type {
Jon Ashburn9464e772015-07-02 16:10:32 -060054 VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1,
55 VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2,
56 VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // both instance and device layer, bitwise
57 VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4,
58 VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8,
59 VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // both instance and device layer, bitwise
Jon Ashburn399c9162015-07-02 09:40:15 -060060};
61
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060062struct loader_extension_list {
63 size_t capacity;
64 uint32_t count;
Jon Ashburnb7d327c2015-08-04 11:14:18 -060065 VkExtensionProperties *list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060066};
67
Jon Ashburn399c9162015-07-02 09:40:15 -060068struct loader_name_value {
Jon Ashburnb2379c52015-08-04 10:22:33 -060069 char name[MAX_STRING_SIZE];
70 char value[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -060071};
72
73struct loader_lib_info {
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060074 char *lib_name;
Jon Ashburn399c9162015-07-02 09:40:15 -060075 uint32_t ref_count;
76 loader_platform_dl_handle lib_handle;
77};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060078
Jon Ashburn399c9162015-07-02 09:40:15 -060079struct loader_layer_functions {
Jon Ashburnb2379c52015-08-04 10:22:33 -060080 char str_gipa[MAX_STRING_SIZE];
81 char str_gdpa[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -060082 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
83 PFN_vkGetDeviceProcAddr get_device_proc_addr;
84};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060085
Jon Ashburn399c9162015-07-02 09:40:15 -060086struct loader_layer_properties {
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -060087 VkLayerProperties info;
Jon Ashburn399c9162015-07-02 09:40:15 -060088 enum layer_type type;
89 struct loader_lib_info lib_info;
Jon Ashburn399c9162015-07-02 09:40:15 -060090 struct loader_layer_functions functions;
91 struct loader_extension_list instance_extension_list;
92 struct loader_extension_list device_extension_list;
93 struct loader_name_value disable_env_var;
94 struct loader_name_value enable_env_var;
95};
96
97struct loader_layer_list {
98 size_t capacity;
99 uint32_t count;
100 struct loader_layer_properties *list;
Jon Ashburn13482452015-05-12 17:26:48 -0600101};
102
Courtney Goeltzenleuchter8aff3862015-07-05 12:53:31 -0600103struct loader_layer_library_list {
104 size_t capacity;
105 uint32_t count;
106 struct loader_lib_info *list;
107};
108
Jon Ashburn10f4e822015-06-10 10:06:06 -0600109/* per CreateDevice structure */
110struct loader_device {
111 VkLayerDispatchTable loader_dispatch;
112 VkDevice device; // device object from the icd
113
114 uint32_t app_extension_count;
115 VkExtensionProperties *app_extension_props;
116
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600117 struct loader_layer_list activated_layer_list;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600118
119 struct loader_device *next;
120};
121
Jon Ashburn392c5622015-06-10 16:11:42 -0600122/* per ICD structure */
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600123struct loader_icd {
124 const struct loader_scanned_icds *scanned_icds;
125
Jon Ashburn10f4e822015-06-10 10:06:06 -0600126 struct loader_device *logical_device_list;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600127 uint32_t gpu_count;
Jon Ashburn392c5622015-06-10 16:11:42 -0600128 VkPhysicalDevice *gpus; // enumerated PhysicalDevices
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600129 VkInstance instance; // instance object from the icd
Jon Ashburnc89dd4a2015-05-18 13:20:15 -0600130 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600131 PFN_vkDestroyInstance DestroyInstance;
132 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbes1c946ec2015-06-21 22:55:02 +1200133 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Courtney Goeltzenleuchter2b6559e2015-07-12 12:52:09 -0600134 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Jon Ashburn25c11452015-07-23 18:49:07 -0600135 PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties;
Chris Forbes1c946ec2015-06-21 22:55:02 +1200136 PFN_vkGetPhysicalDeviceLimits GetPhysicalDeviceLimits;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600137 PFN_vkCreateDevice CreateDevice;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600138 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Cody Northropfc4ad132015-08-03 17:04:53 -0600139 PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600140 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600141 PFN_vkGetPhysicalDeviceExtensionProperties GetPhysicalDeviceExtensionProperties;
Mark Lobodzinski0c708be2015-07-03 15:58:09 -0600142 PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600143 PFN_vkDbgCreateMsgCallback DbgCreateMsgCallback;
144 PFN_vkDbgDestroyMsgCallback DbgDestroyMsgCallback;
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600145 PFN_vkGetPhysicalDeviceSurfaceSupportWSI GetPhysicalDeviceSurfaceSupportWSI;
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600146
Courtney Goeltzenleuchter1c512402015-06-17 20:51:59 -0600147 /*
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600148 * Fill in the cache of available global extensions that operate
149 * with this physical device. This cache will be used to satisfy
150 * calls to GetPhysicalDeviceExtensionProperties
Courtney Goeltzenleuchter1c512402015-06-17 20:51:59 -0600151 */
Jon Ashburn10f4e822015-06-10 10:06:06 -0600152 struct loader_extension_list device_extension_cache[MAX_GPUS_PER_ICD];
153 struct loader_icd *next;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600154};
155
Jon Ashburn392c5622015-06-10 16:11:42 -0600156/* per instance structure */
Jon Ashburn13482452015-05-12 17:26:48 -0600157struct loader_instance {
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600158 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
159
Jon Ashburn13482452015-05-12 17:26:48 -0600160 uint32_t total_gpu_count;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600161 uint32_t total_icd_count;
Jon Ashburn13482452015-05-12 17:26:48 -0600162 struct loader_icd *icds;
163 struct loader_instance *next;
Jon Ashburne503a7d2015-08-14 14:49:22 -0600164 struct loader_extension_list ext_list; // icds and loaders extensions
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600165 /* TODO: Should keep track of application provided allocation functions */
166
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600167 struct loader_msg_callback_map_entry *icd_msg_callback_map;
168
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600169 struct loader_layer_list activated_layer_list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600170
171 bool debug_report_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600172 VkLayerDbgFunctionNode *DbgFunctionHead;
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600173
174 VkAllocCallbacks alloc_callbacks;
Ian Elliotted33eb72015-07-06 14:36:13 -0600175
176 bool wsi_swapchain_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600177};
178
Jon Ashburn13482452015-05-12 17:26:48 -0600179struct loader_struct {
180 struct loader_instance *instances;
Jon Ashburn13482452015-05-12 17:26:48 -0600181 struct loader_scanned_icds *scanned_icd_list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600182
183 unsigned int loaded_layer_lib_count;
184 struct loader_lib_info *loaded_layer_lib_list;
185
Jon Ashburn13482452015-05-12 17:26:48 -0600186 char *layer_dirs;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600187
Jon Ashburn269b5922015-07-06 15:40:35 -0600188 // TODO use this struct loader_layer_library_list scanned_layer_libraries;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600189};
190
191struct loader_scanned_icds {
192 char *lib_name;
193 loader_platform_dl_handle handle;
194
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600195 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600196 PFN_vkCreateInstance CreateInstance;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600197 PFN_vkGetGlobalExtensionProperties GetGlobalExtensionProperties;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600198 struct loader_scanned_icds *next;
199
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600200 /*
201 * cache of device extensions for specific ICD,
202 * filled in at CreateInstance time
203 */
Courtney Goeltzenleuchter1c512402015-06-17 20:51:59 -0600204 struct loader_extension_list device_extension_list;
Jon Ashburn13482452015-05-12 17:26:48 -0600205};
206
Jon Ashburn399c9162015-07-02 09:40:15 -0600207static inline struct loader_instance *loader_instance(VkInstance instance) {
208 return (struct loader_instance *) instance;
209}
210
Tony Barbour303615c2015-07-03 10:33:54 -0600211static inline void loader_set_dispatch(void* obj, const void *data)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800212{
213 *((const void **) obj) = data;
214}
215
Tony Barbour303615c2015-07-03 10:33:54 -0600216static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800217{
Jon Ashburn62a54d12015-05-01 18:00:33 -0600218 return *((VkLayerDispatchTable **) obj);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800219}
220
Tony Barbour303615c2015-07-03 10:33:54 -0600221static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj)
Jon Ashburn13482452015-05-12 17:26:48 -0600222{
223 return *((VkLayerInstanceDispatchTable **) obj);
224}
225
Tony Barbour303615c2015-07-03 10:33:54 -0600226static inline void loader_init_dispatch(void* obj, const void *data)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800227{
Jon Ashburn167b2b12015-04-15 13:34:33 -0600228#ifdef DEBUG
Chia-I Wufe333ed2015-04-11 15:34:07 +0800229 assert(valid_loader_magic_value(obj) &&
230 "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn167b2b12015-04-15 13:34:33 -0600231#endif
Chia-I Wufe333ed2015-04-11 15:34:07 +0800232
Jon Ashburn62a54d12015-05-01 18:00:33 -0600233 loader_set_dispatch(obj, data);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800234}
235
Jon Ashburn13482452015-05-12 17:26:48 -0600236/* global variables used across files */
237extern struct loader_struct loader;
238extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_icd);
Jon Ashburn13482452015-05-12 17:26:48 -0600239extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_exts);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600240extern loader_platform_thread_mutex loader_lock;
241extern const VkLayerInstanceDispatchTable instance_disp;
Jon Ashburn37e7f972015-04-06 10:58:22 -0600242
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600243struct loader_msg_callback_map_entry {
244 VkDbgMsgCallback icd_obj;
245 VkDbgMsgCallback loader_obj;
246};
247
248bool compare_vk_extension_properties(
249 const VkExtensionProperties* op1,
250 const VkExtensionProperties* op2);
251
Courtney Goeltzenleuchter7acb9672015-07-06 20:14:18 -0600252VkResult loader_validate_layers(const uint32_t layer_count, const char * const *ppEnabledLayerNames, struct loader_layer_list *list);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600253
254VkResult loader_validate_instance_extensions(
Jon Ashburn555d2ed2015-08-14 11:57:54 -0600255 const struct loader_extension_list *icd_exts,
Jon Ashburnf6a69702015-08-11 14:49:54 -0600256 const struct loader_layer_list *instance_layer,
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600257 const VkInstanceCreateInfo* pCreateInfo);
258
Jon Ashburn13482452015-05-12 17:26:48 -0600259/* instance layer chain termination entrypoint definitions */
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400260VkResult VKAPI loader_CreateInstance(
Jon Ashburn13482452015-05-12 17:26:48 -0600261 const VkInstanceCreateInfo* pCreateInfo,
262 VkInstance* pInstance);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800263
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400264VkResult VKAPI loader_DestroyInstance(
Jon Ashburn13482452015-05-12 17:26:48 -0600265 VkInstance instance);
266
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400267VkResult VKAPI loader_EnumeratePhysicalDevices(
Jon Ashburn13482452015-05-12 17:26:48 -0600268 VkInstance instance,
269 uint32_t* pPhysicalDeviceCount,
270 VkPhysicalDevice* pPhysicalDevices);
Chris Forbes1c946ec2015-06-21 22:55:02 +1200271
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400272VkResult VKAPI loader_GetPhysicalDeviceFeatures(
Chris Forbes1c946ec2015-06-21 22:55:02 +1200273 VkPhysicalDevice physicalDevice,
274 VkPhysicalDeviceFeatures* pFeatures);
275
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400276VkResult VKAPI loader_GetPhysicalDeviceFormatProperties(
Chris Forbes1c946ec2015-06-21 22:55:02 +1200277 VkPhysicalDevice physicalDevice,
278 VkFormat format,
279 VkFormatProperties* pFormatInfo);
280
Jon Ashburn25c11452015-07-23 18:49:07 -0600281VkResult VKAPI loader_GetPhysicalDeviceImageFormatProperties(
282 VkPhysicalDevice physicalDevice,
283 VkFormat format,
284 VkImageType type,
285 VkImageTiling tiling,
286 VkImageUsageFlags usage,
287 VkImageFormatProperties* pImageFormatProperties);
288
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400289VkResult VKAPI loader_GetPhysicalDeviceLimits(
Chris Forbes1c946ec2015-06-21 22:55:02 +1200290 VkPhysicalDevice physicalDevice,
291 VkPhysicalDeviceLimits* pLimits);
292
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400293VkResult VKAPI loader_GetPhysicalDeviceSparseImageFormatProperties(
Mark Lobodzinski0c708be2015-07-03 15:58:09 -0600294 VkPhysicalDevice physicalDevice,
295 VkFormat format,
296 VkImageType type,
297 uint32_t samples,
298 VkImageUsageFlags usage,
299 VkImageTiling tiling,
300 uint32_t* pNumProperties,
301 VkSparseImageFormatProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600302
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400303VkResult VKAPI loader_GetPhysicalDeviceProperties (
Tony Barbour4e657ba2015-06-24 16:06:58 -0600304 VkPhysicalDevice physicalDevice,
305 VkPhysicalDeviceProperties* pProperties);
306
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400307VkResult VKAPI loader_GetPhysicalDeviceExtensionProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600308 const char *pLayerName, uint32_t *pCount,
Tony Barbour4e657ba2015-06-24 16:06:58 -0600309 VkExtensionProperties* pProperties);
310
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400311VkResult VKAPI loader_GetPhysicalDeviceLayerProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600312 uint32_t *pCount,
313 VkLayerProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600314
Cody Northropfc4ad132015-08-03 17:04:53 -0600315VkResult VKAPI loader_GetPhysicalDeviceQueueFamilyProperties (
316 VkPhysicalDevice physicalDevice,
317 uint32_t* pCount,
318 VkQueueFamilyProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600319
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400320VkResult VKAPI loader_GetPhysicalDeviceMemoryProperties (
Tony Barbour4e657ba2015-06-24 16:06:58 -0600321 VkPhysicalDevice physicalDevice,
322 VkPhysicalDeviceMemoryProperties * pProperties);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600323
Dan Ginsburga2d864e2015-07-23 13:15:00 -0400324VkResult VKAPI loader_CreateDevice(
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600325 VkPhysicalDevice gpu,
326 const VkDeviceCreateInfo* pCreateInfo,
327 VkDevice* pDevice);
Jon Ashburn13482452015-05-12 17:26:48 -0600328
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600329/* helper function definitions */
Jon Ashburn02a8d6e2015-07-02 12:59:25 -0600330bool has_vk_extension_property_array(
331 const VkExtensionProperties *vk_ext_prop,
332 const uint32_t count,
333 const VkExtensionProperties *ext_array);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600334bool has_vk_extension_property(
335 const VkExtensionProperties *vk_ext_prop,
336 const struct loader_extension_list *ext_list);
Jon Ashburn13482452015-05-12 17:26:48 -0600337
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600338void loader_add_to_ext_list(
339 struct loader_extension_list *ext_list,
340 uint32_t prop_list_count,
Jon Ashburnb7d327c2015-08-04 11:14:18 -0600341 const VkExtensionProperties *props);
Courtney Goeltzenleuchter54fcee12015-06-08 15:09:22 -0600342void loader_destroy_ext_list(struct loader_extension_list *ext_info);
Jon Ashburn13482452015-05-12 17:26:48 -0600343
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600344void loader_add_to_layer_list(
345 struct loader_layer_list *list,
346 uint32_t prop_list_count,
347 const struct loader_layer_properties *props);
Jon Ashburn13482452015-05-12 17:26:48 -0600348void loader_icd_scan(void);
Jon Ashburnf6a69702015-08-11 14:49:54 -0600349void loader_layer_scan(
350 struct loader_layer_list *instance_layers,
351 struct loader_layer_list *device_layers);
Jon Ashburn555d2ed2015-08-14 11:57:54 -0600352void loader_get_icd_loader_instance_extensions(struct loader_extension_list *inst_exts);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600353
Jon Ashburnf6a69702015-08-11 14:49:54 -0600354struct loader_icd * loader_get_icd(
355 const VkPhysicalDevice gpu,
356 uint32_t *gpu_index);
Jon Ashburn10f4e822015-06-10 10:06:06 -0600357void loader_remove_logical_device(VkDevice device);
Jon Ashburnf6a69702015-08-11 14:49:54 -0600358VkResult loader_enable_instance_layers(
359 struct loader_instance *inst,
360 const VkInstanceCreateInfo *pCreateInfo,
361 const struct loader_layer_list *instance_layers);
Jon Ashburn10f4e822015-06-10 10:06:06 -0600362void loader_deactivate_instance_layers(struct loader_instance *instance);
Jon Ashburn13482452015-05-12 17:26:48 -0600363uint32_t loader_activate_instance_layers(struct loader_instance *inst);
Courtney Goeltzenleuchter1c512402015-06-17 20:51:59 -0600364void loader_activate_instance_layer_extensions(struct loader_instance *inst);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600365
366void* loader_heap_alloc(
Jon Ashburnf6a69702015-08-11 14:49:54 -0600367 struct loader_instance *instance,
368 size_t size,
369 VkSystemAllocType allocType);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600370
371void* loader_aligned_heap_alloc(
Jon Ashburnf6a69702015-08-11 14:49:54 -0600372 struct loader_instance *instance,
373 size_t size,
374 size_t alignment,
375 VkSystemAllocType allocType);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600376
377void loader_heap_free(
Jon Ashburnf6a69702015-08-11 14:49:54 -0600378 struct loader_instance *instance,
379 void *pMem);
Chia-I Wuc1e0f962014-08-04 08:03:57 +0800380#endif /* LOADER_H */