blob: 2e64e4b873d084a2ea472df9b9511cc964e8f727 [file] [log] [blame]
Chia-I Wu19300602014-08-04 08:03:57 +08001/*
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002 * Vulkan
Chia-I Wu19300602014-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 Wu701f3f62014-09-02 08:32:09 +080023 *
24 * Authors:
25 * Chia-I Wu <olv@lunarg.com>
Chia-I Wu19300602014-08-04 08:03:57 +080026 */
27
28#ifndef LOADER_H
29#define LOADER_H
30
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060031#include <vulkan.h>
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060032#include <vk_debug_report_lunarg.h>
Ian Elliott7e40db92015-08-21 15:09:33 -060033#include <vk_ext_khr_swapchain.h>
Tobin Ehlis0c6f9ee2015-07-03 09:42:57 -060034#include <vk_layer.h>
35#include <vk_icd.h>
Chia-I Wu5291c762015-04-11 15:34:07 +080036#include <assert.h>
37
Chia-I Wu19300602014-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 Goeltzenleuchter110fdf92015-06-29 15:39:26 -060046#define MAX_EXTENSION_NAME_SIZE (VK_MAX_EXTENSION_NAME-1)
Jon Ashburndc6fcad2015-06-10 10:06:06 -060047#define MAX_GPUS_PER_ICD 16
Jon Ashburnf73e9212015-08-04 10:22:33 -060048#define MAX_STRING_SIZE 1024
Courtney Goeltzenleuchter110fdf92015-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 Ashburn27cd5842015-05-12 17:26:48 -060052
Jon Ashburn5ef20602015-07-02 09:40:15 -060053enum layer_type {
Jon Ashburn0c26e712015-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 Ashburn5ef20602015-07-02 09:40:15 -060060};
61
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060062struct loader_extension_list {
63 size_t capacity;
64 uint32_t count;
Jon Ashburn5c042ea2015-08-04 11:14:18 -060065 VkExtensionProperties *list;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060066};
67
Jon Ashburn5ef20602015-07-02 09:40:15 -060068struct loader_name_value {
Jon Ashburnf73e9212015-08-04 10:22:33 -060069 char name[MAX_STRING_SIZE];
70 char value[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -060071};
72
73struct loader_lib_info {
Jon Ashburn3d002332015-08-20 16:35:30 -060074 char lib_name[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -060075 uint32_t ref_count;
76 loader_platform_dl_handle lib_handle;
77};
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060078
Jon Ashburn5ef20602015-07-02 09:40:15 -060079struct loader_layer_functions {
Jon Ashburnf73e9212015-08-04 10:22:33 -060080 char str_gipa[MAX_STRING_SIZE];
81 char str_gdpa[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -060082 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
83 PFN_vkGetDeviceProcAddr get_device_proc_addr;
84};
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060085
Jon Ashburn5ef20602015-07-02 09:40:15 -060086struct loader_layer_properties {
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -060087 VkLayerProperties info;
Jon Ashburn5ef20602015-07-02 09:40:15 -060088 enum layer_type type;
Jon Ashburn3d002332015-08-20 16:35:30 -060089 char lib_name[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-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 Ashburn27cd5842015-05-12 17:26:48 -0600101};
102
Courtney Goeltzenleuchter371de702015-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 Ashburndc6fcad2015-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 Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600117 struct loader_layer_list activated_layer_list;
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600118
119 struct loader_device *next;
120};
121
Jon Ashburn953bb3c2015-06-10 16:11:42 -0600122/* per ICD structure */
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600123struct loader_icd {
Jon Ashburn3d002332015-08-20 16:35:30 -0600124 // pointers to find other structs
125 const struct loader_scanned_icds *this_icd_lib;
126 const struct loader_instance *this_instance;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600127
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600128 struct loader_device *logical_device_list;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600129 uint32_t gpu_count;
Jon Ashburn953bb3c2015-06-10 16:11:42 -0600130 VkPhysicalDevice *gpus; // enumerated PhysicalDevices
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600131 VkInstance instance; // instance object from the icd
Jon Ashburn8d1b0b52015-05-18 13:20:15 -0600132 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600133 PFN_vkDestroyInstance DestroyInstance;
134 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbesbc0bb772015-06-21 22:55:02 +1200135 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Courtney Goeltzenleuchter2caec862015-07-12 12:52:09 -0600136 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Jon Ashburn754864f2015-07-23 18:49:07 -0600137 PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600138 PFN_vkCreateDevice CreateDevice;
Tony Barbour59a47322015-06-24 16:06:58 -0600139 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Cody Northropd0802882015-08-03 17:04:53 -0600140 PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour59a47322015-06-24 16:06:58 -0600141 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600142 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600143 PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600144 PFN_vkDbgCreateMsgCallback DbgCreateMsgCallback;
145 PFN_vkDbgDestroyMsgCallback DbgDestroyMsgCallback;
Ian Elliott7e40db92015-08-21 15:09:33 -0600146 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600147
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600148 /*
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600149 * Fill in the cache of available device extensions from
150 * this physical device. This cache will be used to satisfy
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600151 * calls to EnumerateDeviceExtensionProperties
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600152 */
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600153 struct loader_extension_list device_extension_cache[MAX_GPUS_PER_ICD];
154 struct loader_icd *next;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600155};
156
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600157/* per ICD library structure */
158struct loader_icd_libs {
159 size_t capacity;
160 uint32_t count;
161 struct loader_scanned_icds *list;
162};
163
Jon Ashburn953bb3c2015-06-10 16:11:42 -0600164/* per instance structure */
Jon Ashburn27cd5842015-05-12 17:26:48 -0600165struct loader_instance {
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600166 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
167
Jon Ashburn27cd5842015-05-12 17:26:48 -0600168 uint32_t total_gpu_count;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600169 uint32_t total_icd_count;
Jon Ashburn27cd5842015-05-12 17:26:48 -0600170 struct loader_icd *icds;
171 struct loader_instance *next;
Jon Ashburn5c6a46f2015-08-14 14:49:22 -0600172 struct loader_extension_list ext_list; // icds and loaders extensions
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600173 struct loader_icd_libs icd_libs;
Jon Ashburn3d002332015-08-20 16:35:30 -0600174 struct loader_layer_list instance_layer_list;
175 struct loader_layer_list device_layer_list;
176
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600177 struct loader_msg_callback_map_entry *icd_msg_callback_map;
178
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600179 struct loader_layer_list activated_layer_list;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600180
181 bool debug_report_enabled;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600182 VkLayerDbgFunctionNode *DbgFunctionHead;
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600183
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800184 VkAllocationCallbacks alloc_callbacks;
Ian Elliottd3ef02f2015-07-06 14:36:13 -0600185
186 bool wsi_swapchain_enabled;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600187};
188
Jon Ashburn27cd5842015-05-12 17:26:48 -0600189struct loader_struct {
190 struct loader_instance *instances;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600191
192 unsigned int loaded_layer_lib_count;
Courtney Goeltzenleuchterdad30df2015-10-07 09:00:34 -0600193 size_t loaded_layer_lib_capacity;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600194 struct loader_lib_info *loaded_layer_lib_list;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600195 // TODO add ref counting of ICD libraries
Jon Ashburn2d0c4bb2015-07-06 15:40:35 -0600196 // TODO use this struct loader_layer_library_list scanned_layer_libraries;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600197 // TODO add list of icd libraries for ref counting them for closure
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600198};
199
200struct loader_scanned_icds {
201 char *lib_name;
202 loader_platform_dl_handle handle;
203
Jon Ashburnc624c882015-07-16 10:17:29 -0600204 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600205 PFN_vkCreateInstance CreateInstance;
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600206 PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties;
Jon Ashburn27cd5842015-05-12 17:26:48 -0600207};
208
Jon Ashburn5ef20602015-07-02 09:40:15 -0600209static inline struct loader_instance *loader_instance(VkInstance instance) {
210 return (struct loader_instance *) instance;
211}
212
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600213static inline void loader_set_dispatch(void* obj, const void *data)
Chia-I Wu5291c762015-04-11 15:34:07 +0800214{
215 *((const void **) obj) = data;
216}
217
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600218static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj)
Chia-I Wu5291c762015-04-11 15:34:07 +0800219{
Jon Ashburn1ed042c2015-05-01 18:00:33 -0600220 return *((VkLayerDispatchTable **) obj);
Chia-I Wu5291c762015-04-11 15:34:07 +0800221}
222
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600223static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj)
Jon Ashburn27cd5842015-05-12 17:26:48 -0600224{
225 return *((VkLayerInstanceDispatchTable **) obj);
226}
227
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600228static inline void loader_init_dispatch(void* obj, const void *data)
Chia-I Wu5291c762015-04-11 15:34:07 +0800229{
Jon Ashburn40066642015-04-15 13:34:33 -0600230#ifdef DEBUG
Chia-I Wu5291c762015-04-11 15:34:07 +0800231 assert(valid_loader_magic_value(obj) &&
232 "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn40066642015-04-15 13:34:33 -0600233#endif
Chia-I Wu5291c762015-04-11 15:34:07 +0800234
Jon Ashburn1ed042c2015-05-01 18:00:33 -0600235 loader_set_dispatch(obj, data);
Chia-I Wu5291c762015-04-11 15:34:07 +0800236}
237
Jon Ashburn27cd5842015-05-12 17:26:48 -0600238/* global variables used across files */
239extern struct loader_struct loader;
Jon Ashburn87d6aa92015-08-28 15:19:27 -0600240extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600241extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600242extern loader_platform_thread_mutex loader_lock;
Jon Ashburn6461ef22015-09-22 13:11:00 -0600243extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600244extern const VkLayerInstanceDispatchTable instance_disp;
Jon Ashburnbacb0f52015-04-06 10:58:22 -0600245
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600246struct loader_msg_callback_map_entry {
247 VkDbgMsgCallback icd_obj;
248 VkDbgMsgCallback loader_obj;
249};
250
251bool compare_vk_extension_properties(
252 const VkExtensionProperties* op1,
253 const VkExtensionProperties* op2);
254
Jon Ashburn3d002332015-08-20 16:35:30 -0600255VkResult loader_validate_layers(
256 const uint32_t layer_count,
257 const char * const *ppEnabledLayerNames,
258 const struct loader_layer_list *list);
Courtney Goeltzenleuchter3b8c5ff2015-07-06 17:45:08 -0600259
260VkResult loader_validate_instance_extensions(
Jon Ashburn9a4c6aa2015-08-14 11:57:54 -0600261 const struct loader_extension_list *icd_exts,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600262 const struct loader_layer_list *instance_layer,
Courtney Goeltzenleuchter3b8c5ff2015-07-06 17:45:08 -0600263 const VkInstanceCreateInfo* pCreateInfo);
264
Jon Ashburn27cd5842015-05-12 17:26:48 -0600265/* instance layer chain termination entrypoint definitions */
Dan Ginsburg78556e82015-07-23 13:15:00 -0400266VkResult VKAPI loader_CreateInstance(
Jon Ashburn27cd5842015-05-12 17:26:48 -0600267 const VkInstanceCreateInfo* pCreateInfo,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800268 const VkAllocationCallbacks* pAllocator,
Jon Ashburn27cd5842015-05-12 17:26:48 -0600269 VkInstance* pInstance);
Chia-I Wu5291c762015-04-11 15:34:07 +0800270
Mark Lobodzinski2141f652015-09-07 13:59:43 -0600271void VKAPI loader_DestroyInstance(
Chia-I Wuf7458c52015-10-26 21:10:41 +0800272 VkInstance instance,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800273 const VkAllocationCallbacks* pAllocator);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600274
Dan Ginsburg78556e82015-07-23 13:15:00 -0400275VkResult VKAPI loader_EnumeratePhysicalDevices(
Jon Ashburn27cd5842015-05-12 17:26:48 -0600276 VkInstance instance,
277 uint32_t* pPhysicalDeviceCount,
278 VkPhysicalDevice* pPhysicalDevices);
Chris Forbesbc0bb772015-06-21 22:55:02 +1200279
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600280void VKAPI loader_GetPhysicalDeviceFeatures(
Chris Forbesbc0bb772015-06-21 22:55:02 +1200281 VkPhysicalDevice physicalDevice,
282 VkPhysicalDeviceFeatures* pFeatures);
283
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600284void VKAPI loader_GetPhysicalDeviceFormatProperties(
Chris Forbesbc0bb772015-06-21 22:55:02 +1200285 VkPhysicalDevice physicalDevice,
286 VkFormat format,
287 VkFormatProperties* pFormatInfo);
288
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600289void VKAPI loader_GetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice,
Jon Ashburn754864f2015-07-23 18:49:07 -0600290 VkFormat format,
291 VkImageType type,
292 VkImageTiling tiling,
293 VkImageUsageFlags usage,
Courtney Goeltzenleuchtera22097a2015-09-10 13:44:12 -0600294 VkImageCreateFlags flags,
Jon Ashburn754864f2015-07-23 18:49:07 -0600295 VkImageFormatProperties* pImageFormatProperties);
296
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600297void VKAPI loader_GetPhysicalDeviceSparseImageFormatProperties(
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600298 VkPhysicalDevice physicalDevice,
299 VkFormat format,
300 VkImageType type,
301 uint32_t samples,
302 VkImageUsageFlags usage,
303 VkImageTiling tiling,
304 uint32_t* pNumProperties,
305 VkSparseImageFormatProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600306
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600307void VKAPI loader_GetPhysicalDeviceProperties (
Tony Barbour59a47322015-06-24 16:06:58 -0600308 VkPhysicalDevice physicalDevice,
309 VkPhysicalDeviceProperties* pProperties);
310
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600311VkResult VKAPI loader_EnumerateDeviceExtensionProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600312 const char *pLayerName, uint32_t *pCount,
Tony Barbour59a47322015-06-24 16:06:58 -0600313 VkExtensionProperties* pProperties);
314
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600315VkResult VKAPI loader_EnumerateDeviceLayerProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600316 uint32_t *pCount,
317 VkLayerProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600318
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600319void VKAPI loader_GetPhysicalDeviceQueueFamilyProperties (
Cody Northropd0802882015-08-03 17:04:53 -0600320 VkPhysicalDevice physicalDevice,
321 uint32_t* pCount,
322 VkQueueFamilyProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600323
Courtney Goeltzenleuchter06d89472015-10-20 16:40:38 -0600324void VKAPI loader_GetPhysicalDeviceMemoryProperties (
Tony Barbour59a47322015-06-24 16:06:58 -0600325 VkPhysicalDevice physicalDevice,
326 VkPhysicalDeviceMemoryProperties * pProperties);
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600327
Dan Ginsburg78556e82015-07-23 13:15:00 -0400328VkResult VKAPI loader_CreateDevice(
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600329 VkPhysicalDevice gpu,
330 const VkDeviceCreateInfo* pCreateInfo,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800331 const VkAllocationCallbacks* pAllocator,
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600332 VkDevice* pDevice);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600333
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600334/* helper function definitions */
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600335void loader_initialize(void);
Jon Ashburnbd6c4882015-07-02 12:59:25 -0600336bool has_vk_extension_property_array(
337 const VkExtensionProperties *vk_ext_prop,
338 const uint32_t count,
339 const VkExtensionProperties *ext_array);
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600340bool has_vk_extension_property(
341 const VkExtensionProperties *vk_ext_prop,
342 const struct loader_extension_list *ext_list);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600343
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600344void loader_add_to_ext_list(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600345 const struct loader_instance *inst,
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600346 struct loader_extension_list *ext_list,
347 uint32_t prop_list_count,
Jon Ashburn5c042ea2015-08-04 11:14:18 -0600348 const VkExtensionProperties *props);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600349void loader_destroy_ext_list(
350 const struct loader_instance *inst,
351 struct loader_extension_list *ext_info);
352void loader_delete_layer_properties(
353 const struct loader_instance *inst,
354 struct loader_layer_list *layer_list);
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600355void loader_add_to_layer_list(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600356 const struct loader_instance *inst,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600357 struct loader_layer_list *list,
358 uint32_t prop_list_count,
359 const struct loader_layer_properties *props);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600360void loader_scanned_icd_clear(
361 const struct loader_instance *inst,
362 struct loader_icd_libs *icd_libs);
363void loader_icd_scan(
364 const struct loader_instance *inst,
365 struct loader_icd_libs *icds);
Jon Ashburnb82c1852015-08-11 14:49:54 -0600366void loader_layer_scan(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600367 const struct loader_instance *inst,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600368 struct loader_layer_list *instance_layers,
369 struct loader_layer_list *device_layers);
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600370void loader_get_icd_loader_instance_extensions(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600371 const struct loader_instance *inst,
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600372 struct loader_icd_libs *icd_libs,
373 struct loader_extension_list *inst_exts);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600374struct loader_icd *loader_get_icd_and_device(
375 const VkDevice device,
376 struct loader_device **found_dev);
Jon Ashburne0e64572015-09-30 12:56:42 -0600377struct loader_instance *loader_get_instance(
378 const VkInstance instance);
Jon Ashburnb82c1852015-08-11 14:49:54 -0600379struct loader_icd * loader_get_icd(
380 const VkPhysicalDevice gpu,
381 uint32_t *gpu_index);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600382void loader_remove_logical_device(
383 const struct loader_instance *inst,
384 VkDevice device);
Jon Ashburnb82c1852015-08-11 14:49:54 -0600385VkResult loader_enable_instance_layers(
386 struct loader_instance *inst,
387 const VkInstanceCreateInfo *pCreateInfo,
388 const struct loader_layer_list *instance_layers);
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600389void loader_deactivate_instance_layers(struct loader_instance *instance);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600390uint32_t loader_activate_instance_layers(struct loader_instance *inst);
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600391void loader_activate_instance_layer_extensions(struct loader_instance *inst);
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600392
393void* loader_heap_alloc(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600394 const struct loader_instance *instance,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600395 size_t size,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800396 VkSystemAllocationScope allocationScope);
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600397
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600398void loader_heap_free(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600399 const struct loader_instance *instance,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800400 void *pMemory);
Jon Ashburn87d6aa92015-08-28 15:19:27 -0600401
402void *loader_tls_heap_alloc(size_t size);
403
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800404void loader_tls_heap_free(void *pMemory);
Chia-I Wu19300602014-08-04 08:03:57 +0800405#endif /* LOADER_H */