blob: 057d12d15a619e96754bbeb08f69049b12fbddfd [file] [log] [blame]
Chia-I Wuc1e0f962014-08-04 08:03:57 +08001/*
Chia-I Wuc1e0f962014-08-04 08:03:57 +08002 *
Courtney Goeltzenleuchter20f29b12015-10-29 13:50:34 -06003 * Copyright (C) 2015 Valve Corporation
Courtney Goeltzenleuchter8e1b8d92015-12-02 14:53:22 -07004 * Copyright (C) 2015 Google Inc.
Chia-I Wuc1e0f962014-08-04 08:03:57 +08005 *
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 *
Courtney Goeltzenleuchterb9ce3952015-10-30 11:14:30 -060024 * Author: Chia-I Wu <olvaffe@gmail.com>
25 * Author: Chia-I Wu <olv@lunarg.com>
26 * Author: Chris Forbes <chrisf@ijw.co.nz>
27 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
28 * Author: Jon Ashburn <jon@lunarg.com>
29 * Author: Tony Barbour <tony@LunarG.com>
30 *
Chia-I Wuc1e0f962014-08-04 08:03:57 +080031 */
32
33#ifndef LOADER_H
34#define LOADER_H
35
David Pinedoa5036622015-11-06 12:54:48 -070036#include <vulkan/vulkan.h>
Jon Ashburn3708e792015-11-06 11:02:40 -070037#include <vk_loader_platform.h>
Ian Elliottafaf1852015-11-17 17:29:40 -070038
David Pinedoaf35af72015-11-24 09:00:24 -070039#include <vulkan/vk_lunarg_debug_report.h>
Ian Elliotta77fed72015-11-18 14:57:08 -070040
David Pinedoa5036622015-11-06 12:54:48 -070041#include <vulkan/vk_layer.h>
42#include <vulkan/vk_icd.h>
Chia-I Wufe333ed2015-04-11 15:34:07 +080043#include <assert.h>
44
Chia-I Wuc1e0f962014-08-04 08:03:57 +080045#if defined(__GNUC__) && __GNUC__ >= 4
46# define LOADER_EXPORT __attribute__((visibility("default")))
47#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
48# define LOADER_EXPORT __attribute__((visibility("default")))
49#else
50# define LOADER_EXPORT
51#endif
52
Jon Ashburnb2379c52015-08-04 10:22:33 -060053#define MAX_STRING_SIZE 1024
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -060054#define VK_MAJOR(version) (version >> 22)
55#define VK_MINOR(version) ((version >> 12) & 0x3ff)
56#define VK_PATCH(version) (version & 0xfff)
Jon Ashburn13482452015-05-12 17:26:48 -060057
Jon Ashburn399c9162015-07-02 09:40:15 -060058enum layer_type {
Jon Ashburn9464e772015-07-02 16:10:32 -060059 VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1,
60 VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2,
61 VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // both instance and device layer, bitwise
62 VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4,
63 VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8,
64 VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // both instance and device layer, bitwise
Jon Ashburn399c9162015-07-02 09:40:15 -060065};
66
Jon Ashburn6b00b472015-12-10 08:51:10 -070067// form of all dynamic lists/arrays
68// only the list element should be changed
69struct loader_generic_list {
70 size_t capacity;
71 uint32_t count;
72 void *list;
73};
74
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060075struct loader_extension_list {
76 size_t capacity;
77 uint32_t count;
Jon Ashburnb7d327c2015-08-04 11:14:18 -060078 VkExtensionProperties *list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -060079};
80
Jon Ashburn92cdb012015-12-10 18:17:34 -070081struct loader_dev_ext_props {
82 VkExtensionProperties props;
83 uint32_t entrypoint_count;
84 char **entrypoints;
85};
86
87struct loader_device_extension_list {
88 size_t capacity;
89 uint32_t count;
90 struct loader_dev_ext_props *list;
91};
92
Jon Ashburn399c9162015-07-02 09:40:15 -060093struct loader_name_value {
Jon Ashburnb2379c52015-08-04 10:22:33 -060094 char name[MAX_STRING_SIZE];
95 char value[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -060096};
97
98struct loader_lib_info {
Jon Ashburnb4c24232015-08-20 16:35:30 -060099 char lib_name[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600100 uint32_t ref_count;
101 loader_platform_dl_handle lib_handle;
102};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600103
Jon Ashburn399c9162015-07-02 09:40:15 -0600104struct loader_layer_functions {
Jon Ashburnb2379c52015-08-04 10:22:33 -0600105 char str_gipa[MAX_STRING_SIZE];
106 char str_gdpa[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600107 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
108 PFN_vkGetDeviceProcAddr get_device_proc_addr;
109};
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600110
Jon Ashburn399c9162015-07-02 09:40:15 -0600111struct loader_layer_properties {
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600112 VkLayerProperties info;
Jon Ashburn399c9162015-07-02 09:40:15 -0600113 enum layer_type type;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600114 char lib_name[MAX_STRING_SIZE];
Jon Ashburn399c9162015-07-02 09:40:15 -0600115 struct loader_layer_functions functions;
116 struct loader_extension_list instance_extension_list;
Jon Ashburn92cdb012015-12-10 18:17:34 -0700117 struct loader_device_extension_list device_extension_list;
Jon Ashburn399c9162015-07-02 09:40:15 -0600118 struct loader_name_value disable_env_var;
119 struct loader_name_value enable_env_var;
120};
121
122struct loader_layer_list {
123 size_t capacity;
124 uint32_t count;
125 struct loader_layer_properties *list;
Jon Ashburn13482452015-05-12 17:26:48 -0600126};
127
Courtney Goeltzenleuchter8aff3862015-07-05 12:53:31 -0600128struct loader_layer_library_list {
129 size_t capacity;
130 uint32_t count;
131 struct loader_lib_info *list;
132};
133
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700134struct loader_dispatch_hash_list {
135 size_t capacity;
136 uint32_t count;
137 uint32_t *index; // index into the dev_ext dispatch table
138};
139
140#define MAX_NUM_DEV_EXTS 250
141// loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.DevExt have one to one
142// correspondence; one loader_dispatch_hash_entry for one DevExt dispatch entry.
143// Also have a one to one correspondence with functions in dev_ext_trampoline.c
144struct loader_dispatch_hash_entry {
145 char *func_name;
146 struct loader_dispatch_hash_list list; // to handle hashing collisions
147};
148
149typedef void (VKAPI_PTR *PFN_vkDevExt)(VkDevice device);
150struct loader_dev_ext_dispatch_table {
151 PFN_vkDevExt DevExt[MAX_NUM_DEV_EXTS];
152};
153
154struct loader_dev_dispatch_table {
155 VkLayerDispatchTable core_dispatch;
156 struct loader_dev_ext_dispatch_table ext_dispatch;
157};
158
Jon Ashburn10f4e822015-06-10 10:06:06 -0600159/* per CreateDevice structure */
160struct loader_device {
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700161 struct loader_dev_dispatch_table loader_dispatch;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600162 VkDevice device; // device object from the icd
163
164 uint32_t app_extension_count;
165 VkExtensionProperties *app_extension_props;
166
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600167 struct loader_layer_list activated_layer_list;
Jon Ashburn10f4e822015-06-10 10:06:06 -0600168
169 struct loader_device *next;
170};
171
Jon Ashburn392c5622015-06-10 16:11:42 -0600172/* per ICD structure */
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600173struct loader_icd {
Jon Ashburnb4c24232015-08-20 16:35:30 -0600174 // pointers to find other structs
175 const struct loader_scanned_icds *this_icd_lib;
176 const struct loader_instance *this_instance;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600177
Jon Ashburn10f4e822015-06-10 10:06:06 -0600178 struct loader_device *logical_device_list;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600179 VkInstance instance; // instance object from the icd
Jon Ashburnc89dd4a2015-05-18 13:20:15 -0600180 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600181 PFN_vkDestroyInstance DestroyInstance;
182 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbes1c946ec2015-06-21 22:55:02 +1200183 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Courtney Goeltzenleuchter2b6559e2015-07-12 12:52:09 -0600184 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Jon Ashburn25c11452015-07-23 18:49:07 -0600185 PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600186 PFN_vkCreateDevice CreateDevice;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600187 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Cody Northropfc4ad132015-08-03 17:04:53 -0600188 PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour4e657ba2015-06-24 16:06:58 -0600189 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchtere25064c2015-09-14 17:22:16 -0600190 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
Mark Lobodzinski0c708be2015-07-03 15:58:09 -0600191 PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties;
Courtney Goeltzenleuchter4c5eb7e2015-11-30 12:13:14 -0700192 PFN_vkCreateDebugReportCallbackLUNARG CreateDebugReportCallbackLUNARG;
193 PFN_vkDestroyDebugReportCallbackLUNARG DestroyDebugReportCallbackLUNARG;
Courtney Goeltzenleuchter20af4c92015-11-30 15:28:25 -0700194 PFN_vkDebugReportMessageLUNARG DebugReportMessageLUNARG;
Ian Elliottec736342015-08-21 15:09:33 -0600195 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Ian Elliottea666b22015-11-19 16:05:09 -0700196 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR GetPhysicalDeviceSurfaceCapabilitiesKHR;
197 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
198 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR GetPhysicalDeviceSurfacePresentModesKHR;
Ian Elliotte851dd62015-11-24 15:39:10 -0700199#ifdef VK_USE_PLATFORM_WIN32_KHR
200 PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR GetPhysicalDeviceWin32PresentationSupportKHR;
201#endif
202#ifdef VK_USE_PLATFORM_MIR_KHR
203 PFN_vkGetPhysicalDeviceMirPresentationSupportKHR GetPhysicalDeviceMirPresentvationSupportKHR;
204#endif
205#ifdef VK_USE_PLATFORM_WAYLAND_KHR
206 PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR GetPhysicalDeviceWaylandPresentationSupportKHR;
207#endif
208#ifdef VK_USE_PLATFORM_XCB_KHR
209 PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR GetPhysicalDeviceXcbPresentationSupportKHR;
210#endif
211#ifdef VK_USE_PLATFORM_XLIB_KHR
212 PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR GetPhysicalDeviceXlibPresentationSupportKHR;
213#endif
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600214
Jon Ashburn10f4e822015-06-10 10:06:06 -0600215 struct loader_icd *next;
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600216};
217
Jon Ashburne0367472015-08-18 18:04:47 -0600218/* per ICD library structure */
219struct loader_icd_libs {
220 size_t capacity;
221 uint32_t count;
222 struct loader_scanned_icds *list;
223};
224
Jon Ashburn392c5622015-06-10 16:11:42 -0600225/* per instance structure */
Jon Ashburn13482452015-05-12 17:26:48 -0600226struct loader_instance {
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600227 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
228
Jon Ashburn13482452015-05-12 17:26:48 -0600229 uint32_t total_gpu_count;
Jon Ashburn969caa42015-11-01 14:04:06 -0700230 struct loader_physical_device *phys_devs;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600231 uint32_t total_icd_count;
Jon Ashburn13482452015-05-12 17:26:48 -0600232 struct loader_icd *icds;
233 struct loader_instance *next;
Jon Ashburne503a7d2015-08-14 14:49:22 -0600234 struct loader_extension_list ext_list; // icds and loaders extensions
Jon Ashburne0367472015-08-18 18:04:47 -0600235 struct loader_icd_libs icd_libs;
Jon Ashburnb4c24232015-08-20 16:35:30 -0600236 struct loader_layer_list instance_layer_list;
237 struct loader_layer_list device_layer_list;
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700238 struct loader_dispatch_hash_entry disp_hash[MAX_NUM_DEV_EXTS];
Jon Ashburnb4c24232015-08-20 16:35:30 -0600239
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600240 struct loader_msg_callback_map_entry *icd_msg_callback_map;
241
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600242 struct loader_layer_list activated_layer_list;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600243
244 bool debug_report_enabled;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600245 VkLayerDbgFunctionNode *DbgFunctionHead;
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600246
Chia-I Wu227c8b32015-10-27 18:04:07 +0800247 VkAllocationCallbacks alloc_callbacks;
Ian Elliotted33eb72015-07-06 14:36:13 -0600248
Ian Elliott54cea232015-10-30 15:28:23 -0600249 bool wsi_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700250#ifdef VK_USE_PLATFORM_WIN32_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600251 bool wsi_win32_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700252#endif
253#ifdef VK_USE_PLATFORM_MIR_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600254 bool wsi_mir_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700255#endif
256#ifdef VK_USE_PLATFORM_WAYLAND_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600257 bool wsi_wayland_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700258#endif
259#ifdef VK_USE_PLATFORM_XCB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600260 bool wsi_xcb_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700261#endif
262#ifdef VK_USE_PLATFORM_XLIB_KHR
Ian Elliott54cea232015-10-30 15:28:23 -0600263 bool wsi_xlib_surface_enabled;
Mark Lobodzinski1ad14b42015-12-10 16:25:21 -0700264#endif
265#ifdef VK_USE_PLATFORM_ANDROID_KHR
266 bool wsi_android_surface_enabled;
267#endif
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600268};
269
Jon Ashburn969caa42015-11-01 14:04:06 -0700270/* per enumerated PhysicalDevice structure */
271struct loader_physical_device {
272 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
273 struct loader_instance *this_instance;
274 struct loader_icd *this_icd;
275 VkPhysicalDevice phys_dev; // object from ICD
276 /*
277 * Fill in the cache of available device extensions from
Jon Ashburna1981ff2015-11-02 17:40:01 -0700278 * this physical device. This cache can be used during CreateDevice
Jon Ashburn969caa42015-11-01 14:04:06 -0700279 */
280 struct loader_extension_list device_extension_cache;
281};
282
Jon Ashburn13482452015-05-12 17:26:48 -0600283struct loader_struct {
284 struct loader_instance *instances;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600285
286 unsigned int loaded_layer_lib_count;
Courtney Goeltzenleuchter452303a2015-10-07 09:00:34 -0600287 size_t loaded_layer_lib_capacity;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600288 struct loader_lib_info *loaded_layer_lib_list;
Jon Ashburne0367472015-08-18 18:04:47 -0600289 // TODO add ref counting of ICD libraries
Jon Ashburn269b5922015-07-06 15:40:35 -0600290 // TODO use this struct loader_layer_library_list scanned_layer_libraries;
Jon Ashburne0367472015-08-18 18:04:47 -0600291 // TODO add list of icd libraries for ref counting them for closure
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600292};
293
294struct loader_scanned_icds {
295 char *lib_name;
296 loader_platform_dl_handle handle;
Jon Ashburn27109e82015-11-17 17:35:40 -0700297 uint32_t api_version;
Jon Ashburnc7ca48d2015-07-16 10:17:29 -0600298 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600299 PFN_vkCreateInstance CreateInstance;
Courtney Goeltzenleuchtere25064c2015-09-14 17:22:16 -0600300 PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties;
Jon Ashburn13482452015-05-12 17:26:48 -0600301};
302
Jon Ashburn399c9162015-07-02 09:40:15 -0600303static inline struct loader_instance *loader_instance(VkInstance instance) {
304 return (struct loader_instance *) instance;
305}
306
Tony Barbour303615c2015-07-03 10:33:54 -0600307static inline void loader_set_dispatch(void* obj, const void *data)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800308{
309 *((const void **) obj) = data;
310}
311
Tony Barbour303615c2015-07-03 10:33:54 -0600312static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800313{
Jon Ashburn62a54d12015-05-01 18:00:33 -0600314 return *((VkLayerDispatchTable **) obj);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800315}
316
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700317static inline struct loader_dev_dispatch_table *loader_get_dev_dispatch(const void* obj)
318{
319 return *((struct loader_dev_dispatch_table **) obj);
320}
321
Tony Barbour303615c2015-07-03 10:33:54 -0600322static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj)
Jon Ashburn13482452015-05-12 17:26:48 -0600323{
324 return *((VkLayerInstanceDispatchTable **) obj);
325}
326
Tony Barbour303615c2015-07-03 10:33:54 -0600327static inline void loader_init_dispatch(void* obj, const void *data)
Chia-I Wufe333ed2015-04-11 15:34:07 +0800328{
Jon Ashburn167b2b12015-04-15 13:34:33 -0600329#ifdef DEBUG
Chia-I Wufe333ed2015-04-11 15:34:07 +0800330 assert(valid_loader_magic_value(obj) &&
331 "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn167b2b12015-04-15 13:34:33 -0600332#endif
Chia-I Wufe333ed2015-04-11 15:34:07 +0800333
Jon Ashburn62a54d12015-05-01 18:00:33 -0600334 loader_set_dispatch(obj, data);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800335}
336
Jon Ashburn13482452015-05-12 17:26:48 -0600337/* global variables used across files */
338extern struct loader_struct loader;
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600339extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Jon Ashburne0367472015-08-18 18:04:47 -0600340extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600341extern loader_platform_thread_mutex loader_lock;
Jon Ashburn7d4d51c2015-09-22 13:11:00 -0600342extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600343extern const VkLayerInstanceDispatchTable instance_disp;
Jon Ashburn37e7f972015-04-06 10:58:22 -0600344
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600345struct loader_msg_callback_map_entry {
Courtney Goeltzenleuchterba5db9a2015-11-25 14:07:05 -0700346 VkDebugReportCallbackLUNARG icd_obj;
347 VkDebugReportCallbackLUNARG loader_obj;
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600348};
349
350bool compare_vk_extension_properties(
351 const VkExtensionProperties* op1,
352 const VkExtensionProperties* op2);
353
Jon Ashburnb4c24232015-08-20 16:35:30 -0600354VkResult loader_validate_layers(
355 const uint32_t layer_count,
356 const char * const *ppEnabledLayerNames,
357 const struct loader_layer_list *list);
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600358
359VkResult loader_validate_instance_extensions(
Jon Ashburn555d2ed2015-08-14 11:57:54 -0600360 const struct loader_extension_list *icd_exts,
Jon Ashburnf6a69702015-08-11 14:49:54 -0600361 const struct loader_layer_list *instance_layer,
Courtney Goeltzenleuchter76ece702015-07-06 17:45:08 -0600362 const VkInstanceCreateInfo* pCreateInfo);
363
Jon Ashburn13482452015-05-12 17:26:48 -0600364/* instance layer chain termination entrypoint definitions */
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800365VKAPI_ATTR VkResult VKAPI_CALL loader_CreateInstance(
Jon Ashburn13482452015-05-12 17:26:48 -0600366 const VkInstanceCreateInfo* pCreateInfo,
Chia-I Wu227c8b32015-10-27 18:04:07 +0800367 const VkAllocationCallbacks* pAllocator,
Jon Ashburn13482452015-05-12 17:26:48 -0600368 VkInstance* pInstance);
Chia-I Wufe333ed2015-04-11 15:34:07 +0800369
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800370VKAPI_ATTR void VKAPI_CALL loader_DestroyInstance(
Chia-I Wu221ca472015-10-26 21:10:41 +0800371 VkInstance instance,
Chia-I Wu227c8b32015-10-27 18:04:07 +0800372 const VkAllocationCallbacks* pAllocator);
Jon Ashburn13482452015-05-12 17:26:48 -0600373
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800374VKAPI_ATTR VkResult VKAPI_CALL loader_EnumeratePhysicalDevices(
Jon Ashburn13482452015-05-12 17:26:48 -0600375 VkInstance instance,
376 uint32_t* pPhysicalDeviceCount,
377 VkPhysicalDevice* pPhysicalDevices);
Chris Forbes1c946ec2015-06-21 22:55:02 +1200378
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800379VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFeatures(
Chris Forbes1c946ec2015-06-21 22:55:02 +1200380 VkPhysicalDevice physicalDevice,
381 VkPhysicalDeviceFeatures* pFeatures);
382
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800383VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFormatProperties(
Chris Forbes1c946ec2015-06-21 22:55:02 +1200384 VkPhysicalDevice physicalDevice,
385 VkFormat format,
386 VkFormatProperties* pFormatInfo);
387
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800388VKAPI_ATTR VkResult VKAPI_CALL loader_GetPhysicalDeviceImageFormatProperties(
Chia-I Wuef653f62015-10-31 00:31:16 +0800389 VkPhysicalDevice physicalDevice,
Jon Ashburn25c11452015-07-23 18:49:07 -0600390 VkFormat format,
391 VkImageType type,
392 VkImageTiling tiling,
393 VkImageUsageFlags usage,
Courtney Goeltzenleuchter4743d002015-09-10 13:44:12 -0600394 VkImageCreateFlags flags,
Jon Ashburn25c11452015-07-23 18:49:07 -0600395 VkImageFormatProperties* pImageFormatProperties);
396
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800397VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceSparseImageFormatProperties(
Mark Lobodzinski0c708be2015-07-03 15:58:09 -0600398 VkPhysicalDevice physicalDevice,
399 VkFormat format,
400 VkImageType type,
Chia-I Wubb2b5b32015-10-31 00:31:16 +0800401 VkSampleCountFlagBits samples,
Mark Lobodzinski0c708be2015-07-03 15:58:09 -0600402 VkImageUsageFlags usage,
403 VkImageTiling tiling,
404 uint32_t* pNumProperties,
405 VkSparseImageFormatProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600406
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800407VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceProperties (
Tony Barbour4e657ba2015-06-24 16:06:58 -0600408 VkPhysicalDevice physicalDevice,
409 VkPhysicalDeviceProperties* pProperties);
410
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800411VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceExtensionProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600412 const char *pLayerName, uint32_t *pCount,
Tony Barbour4e657ba2015-06-24 16:06:58 -0600413 VkExtensionProperties* pProperties);
414
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800415VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceLayerProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600416 uint32_t *pCount,
417 VkLayerProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600418
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800419VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceQueueFamilyProperties (
Cody Northropfc4ad132015-08-03 17:04:53 -0600420 VkPhysicalDevice physicalDevice,
421 uint32_t* pCount,
422 VkQueueFamilyProperties* pProperties);
Tony Barbour4e657ba2015-06-24 16:06:58 -0600423
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800424VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceMemoryProperties (
Tony Barbour4e657ba2015-06-24 16:06:58 -0600425 VkPhysicalDevice physicalDevice,
426 VkPhysicalDeviceMemoryProperties * pProperties);
Jon Ashburn7e8d8b42015-05-29 13:15:39 -0600427
Chia-I Wu2c56bb92015-11-06 06:42:02 +0800428VKAPI_ATTR VkResult VKAPI_CALL loader_CreateDevice(
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600429 VkPhysicalDevice gpu,
430 const VkDeviceCreateInfo* pCreateInfo,
Chia-I Wu227c8b32015-10-27 18:04:07 +0800431 const VkAllocationCallbacks* pAllocator,
Jon Ashburnebfa25e2015-05-15 15:09:35 -0600432 VkDevice* pDevice);
Jon Ashburn13482452015-05-12 17:26:48 -0600433
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600434/* helper function definitions */
Jon Ashburne0367472015-08-18 18:04:47 -0600435void loader_initialize(void);
Jon Ashburn02a8d6e2015-07-02 12:59:25 -0600436bool has_vk_extension_property_array(
437 const VkExtensionProperties *vk_ext_prop,
438 const uint32_t count,
439 const VkExtensionProperties *ext_array);
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600440bool has_vk_extension_property(
441 const VkExtensionProperties *vk_ext_prop,
442 const struct loader_extension_list *ext_list);
Jon Ashburn13482452015-05-12 17:26:48 -0600443
Jon Ashburn969caa42015-11-01 14:04:06 -0700444VkResult loader_add_to_ext_list(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600445 const struct loader_instance *inst,
Courtney Goeltzenleuchter67146d02015-06-10 17:39:03 -0600446 struct loader_extension_list *ext_list,
447 uint32_t prop_list_count,
Jon Ashburnb7d327c2015-08-04 11:14:18 -0600448 const VkExtensionProperties *props);
Jon Ashburn6b00b472015-12-10 08:51:10 -0700449void loader_destroy_generic_list(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600450 const struct loader_instance *inst,
Jon Ashburn6b00b472015-12-10 08:51:10 -0700451 struct loader_generic_list *list);
Jon Ashburn8fd90812015-08-28 13:38:21 -0600452void loader_delete_layer_properties(
453 const struct loader_instance *inst,
454 struct loader_layer_list *layer_list);
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600455void loader_add_to_layer_list(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600456 const struct loader_instance *inst,
Courtney Goeltzenleuchter44667cc2015-06-29 15:39:26 -0600457 struct loader_layer_list *list,
458 uint32_t prop_list_count,
459 const struct loader_layer_properties *props);
Jon Ashburn8fd90812015-08-28 13:38:21 -0600460void loader_scanned_icd_clear(
461 const struct loader_instance *inst,
462 struct loader_icd_libs *icd_libs);
463void loader_icd_scan(
464 const struct loader_instance *inst,
465 struct loader_icd_libs *icds);
Jon Ashburnf6a69702015-08-11 14:49:54 -0600466void loader_layer_scan(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600467 const struct loader_instance *inst,
Jon Ashburnf6a69702015-08-11 14:49:54 -0600468 struct loader_layer_list *instance_layers,
469 struct loader_layer_list *device_layers);
Jon Ashburne0367472015-08-18 18:04:47 -0600470void loader_get_icd_loader_instance_extensions(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600471 const struct loader_instance *inst,
Jon Ashburne0367472015-08-18 18:04:47 -0600472 struct loader_icd_libs *icd_libs,
473 struct loader_extension_list *inst_exts);
Jon Ashburn8fd90812015-08-28 13:38:21 -0600474struct loader_icd *loader_get_icd_and_device(
475 const VkDevice device,
476 struct loader_device **found_dev);
Jon Ashburn6cb69f42015-11-17 15:31:02 -0700477void *loader_dev_ext_gpa(
478 struct loader_instance *inst,
479 const char *funcName);
480void *loader_get_dev_ext_trampoline(
481 uint32_t index);
Jon Ashburn8a7e5622015-09-30 12:56:42 -0600482struct loader_instance *loader_get_instance(
483 const VkInstance instance);
Jon Ashburn8fd90812015-08-28 13:38:21 -0600484void loader_remove_logical_device(
485 const struct loader_instance *inst,
Jon Ashburncfd9c712015-11-19 15:43:26 -0700486 struct loader_icd *icd,
487 struct loader_device *found_dev);
Jon Ashburnf6a69702015-08-11 14:49:54 -0600488VkResult loader_enable_instance_layers(
489 struct loader_instance *inst,
490 const VkInstanceCreateInfo *pCreateInfo,
491 const struct loader_layer_list *instance_layers);
Jon Ashburn10f4e822015-06-10 10:06:06 -0600492void loader_deactivate_instance_layers(struct loader_instance *instance);
Jon Ashburn13482452015-05-12 17:26:48 -0600493uint32_t loader_activate_instance_layers(struct loader_instance *inst);
Courtney Goeltzenleuchter1c512402015-06-17 20:51:59 -0600494void loader_activate_instance_layer_extensions(struct loader_instance *inst);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600495
496void* loader_heap_alloc(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600497 const struct loader_instance *instance,
Jon Ashburnf6a69702015-08-11 14:49:54 -0600498 size_t size,
Chia-I Wu227c8b32015-10-27 18:04:07 +0800499 VkSystemAllocationScope allocationScope);
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600500
Courtney Goeltzenleuchter71b454b2015-07-05 11:28:29 -0600501void loader_heap_free(
Jon Ashburn8fd90812015-08-28 13:38:21 -0600502 const struct loader_instance *instance,
Chia-I Wu227c8b32015-10-27 18:04:07 +0800503 void *pMemory);
Jon Ashburnb4dee9c2015-08-28 15:19:27 -0600504
505void *loader_tls_heap_alloc(size_t size);
506
Chia-I Wu227c8b32015-10-27 18:04:07 +0800507void loader_tls_heap_free(void *pMemory);
Chia-I Wuc1e0f962014-08-04 08:03:57 +0800508#endif /* LOADER_H */