blob: c6fc08d370dff9a32aaca32619dec1237334de4f [file] [log] [blame]
Chia-I Wu19300602014-08-04 08:03:57 +08001/*
Chia-I Wu19300602014-08-04 08:03:57 +08002 *
Courtney Goeltzenleuchterfcbe16f2015-10-29 13:50:34 -06003 * Copyright (C) 2015 Valve Corporation
Chia-I Wu19300602014-08-04 08:03:57 +08004 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
Chia-I Wu701f3f62014-09-02 08:32:09 +080022 *
Courtney Goeltzenleuchter05559522015-10-30 11:14:30 -060023 * Author: Chia-I Wu <olvaffe@gmail.com>
24 * Author: Chia-I Wu <olv@lunarg.com>
25 * Author: Chris Forbes <chrisf@ijw.co.nz>
26 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
27 * Author: Jon Ashburn <jon@lunarg.com>
28 * Author: Tony Barbour <tony@LunarG.com>
29 *
Chia-I Wu19300602014-08-04 08:03:57 +080030 */
31
32#ifndef LOADER_H
33#define LOADER_H
34
David Pinedo9316d3b2015-11-06 12:54:48 -070035#include <vulkan/vulkan.h>
Jon Ashburn8a39efc2015-11-06 11:02:40 -070036#include <vk_loader_platform.h>
Ian Elliott1dcd1092015-11-17 17:29:40 -070037
David Pinedoabd07722015-11-24 09:00:24 -070038#include <vulkan/vk_lunarg_debug_report.h>
Ian Elliottba042332015-11-18 14:57:08 -070039
David Pinedo9316d3b2015-11-06 12:54:48 -070040#include <vulkan/vk_layer.h>
41#include <vulkan/vk_icd.h>
Chia-I Wu5291c762015-04-11 15:34:07 +080042#include <assert.h>
43
Chia-I Wu19300602014-08-04 08:03:57 +080044#if defined(__GNUC__) && __GNUC__ >= 4
45# define LOADER_EXPORT __attribute__((visibility("default")))
46#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
47# define LOADER_EXPORT __attribute__((visibility("default")))
48#else
49# define LOADER_EXPORT
50#endif
51
Jon Ashburnf73e9212015-08-04 10:22:33 -060052#define MAX_STRING_SIZE 1024
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -060053#define VK_MAJOR(version) (version >> 22)
54#define VK_MINOR(version) ((version >> 12) & 0x3ff)
55#define VK_PATCH(version) (version & 0xfff)
Jon Ashburn27cd5842015-05-12 17:26:48 -060056
Jon Ashburn5ef20602015-07-02 09:40:15 -060057enum layer_type {
Jon Ashburn0c26e712015-07-02 16:10:32 -060058 VK_LAYER_TYPE_DEVICE_EXPLICIT = 0x1,
59 VK_LAYER_TYPE_INSTANCE_EXPLICIT = 0x2,
60 VK_LAYER_TYPE_GLOBAL_EXPLICIT = 0x3, // both instance and device layer, bitwise
61 VK_LAYER_TYPE_DEVICE_IMPLICIT = 0x4,
62 VK_LAYER_TYPE_INSTANCE_IMPLICIT = 0x8,
63 VK_LAYER_TYPE_GLOBAL_IMPLICIT = 0xc, // both instance and device layer, bitwise
Jon Ashburn5ef20602015-07-02 09:40:15 -060064};
65
Jon Ashburn6e6a2162015-12-10 08:51:10 -070066// form of all dynamic lists/arrays
67// only the list element should be changed
68struct loader_generic_list {
69 size_t capacity;
70 uint32_t count;
71 void *list;
72};
73
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060074struct loader_extension_list {
75 size_t capacity;
76 uint32_t count;
Jon Ashburn5c042ea2015-08-04 11:14:18 -060077 VkExtensionProperties *list;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -060078};
79
Jon Ashburn39fbd4e2015-12-10 18:17:34 -070080struct loader_dev_ext_props {
81 VkExtensionProperties props;
82 uint32_t entrypoint_count;
83 char **entrypoints;
84};
85
86struct loader_device_extension_list {
87 size_t capacity;
88 uint32_t count;
89 struct loader_dev_ext_props *list;
90};
91
Jon Ashburn5ef20602015-07-02 09:40:15 -060092struct loader_name_value {
Jon Ashburnf73e9212015-08-04 10:22:33 -060093 char name[MAX_STRING_SIZE];
94 char value[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -060095};
96
97struct loader_lib_info {
Jon Ashburn3d002332015-08-20 16:35:30 -060098 char lib_name[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -060099 uint32_t ref_count;
100 loader_platform_dl_handle lib_handle;
101};
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600102
Jon Ashburn5ef20602015-07-02 09:40:15 -0600103struct loader_layer_functions {
Jon Ashburnf73e9212015-08-04 10:22:33 -0600104 char str_gipa[MAX_STRING_SIZE];
105 char str_gdpa[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -0600106 PFN_vkGetInstanceProcAddr get_instance_proc_addr;
107 PFN_vkGetDeviceProcAddr get_device_proc_addr;
108};
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600109
Jon Ashburn5ef20602015-07-02 09:40:15 -0600110struct loader_layer_properties {
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600111 VkLayerProperties info;
Jon Ashburn5ef20602015-07-02 09:40:15 -0600112 enum layer_type type;
Jon Ashburn3d002332015-08-20 16:35:30 -0600113 char lib_name[MAX_STRING_SIZE];
Jon Ashburn5ef20602015-07-02 09:40:15 -0600114 struct loader_layer_functions functions;
115 struct loader_extension_list instance_extension_list;
Jon Ashburn39fbd4e2015-12-10 18:17:34 -0700116 struct loader_device_extension_list device_extension_list;
Jon Ashburn5ef20602015-07-02 09:40:15 -0600117 struct loader_name_value disable_env_var;
118 struct loader_name_value enable_env_var;
119};
120
121struct loader_layer_list {
122 size_t capacity;
123 uint32_t count;
124 struct loader_layer_properties *list;
Jon Ashburn27cd5842015-05-12 17:26:48 -0600125};
126
Courtney Goeltzenleuchter371de702015-07-05 12:53:31 -0600127struct loader_layer_library_list {
128 size_t capacity;
129 uint32_t count;
130 struct loader_lib_info *list;
131};
132
Jon Ashburnfc1031e2015-11-17 15:31:02 -0700133struct loader_dispatch_hash_list {
134 size_t capacity;
135 uint32_t count;
136 uint32_t *index; // index into the dev_ext dispatch table
137};
138
139#define MAX_NUM_DEV_EXTS 250
140// loader_dispatch_hash_entry and loader_dev_ext_dispatch_table.DevExt have one to one
141// correspondence; one loader_dispatch_hash_entry for one DevExt dispatch entry.
142// Also have a one to one correspondence with functions in dev_ext_trampoline.c
143struct loader_dispatch_hash_entry {
144 char *func_name;
145 struct loader_dispatch_hash_list list; // to handle hashing collisions
146};
147
148typedef void (VKAPI_PTR *PFN_vkDevExt)(VkDevice device);
149struct loader_dev_ext_dispatch_table {
150 PFN_vkDevExt DevExt[MAX_NUM_DEV_EXTS];
151};
152
153struct loader_dev_dispatch_table {
154 VkLayerDispatchTable core_dispatch;
155 struct loader_dev_ext_dispatch_table ext_dispatch;
156};
157
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600158/* per CreateDevice structure */
159struct loader_device {
Jon Ashburnfc1031e2015-11-17 15:31:02 -0700160 struct loader_dev_dispatch_table loader_dispatch;
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600161 VkDevice device; // device object from the icd
162
163 uint32_t app_extension_count;
164 VkExtensionProperties *app_extension_props;
165
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600166 struct loader_layer_list activated_layer_list;
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600167
168 struct loader_device *next;
169};
170
Jon Ashburn953bb3c2015-06-10 16:11:42 -0600171/* per ICD structure */
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600172struct loader_icd {
Jon Ashburn3d002332015-08-20 16:35:30 -0600173 // pointers to find other structs
174 const struct loader_scanned_icds *this_icd_lib;
175 const struct loader_instance *this_instance;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600176
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600177 struct loader_device *logical_device_list;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600178 VkInstance instance; // instance object from the icd
Jon Ashburn8d1b0b52015-05-18 13:20:15 -0600179 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600180 PFN_vkDestroyInstance DestroyInstance;
181 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbesbc0bb772015-06-21 22:55:02 +1200182 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Courtney Goeltzenleuchter2caec862015-07-12 12:52:09 -0600183 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Jon Ashburn754864f2015-07-23 18:49:07 -0600184 PFN_vkGetPhysicalDeviceImageFormatProperties GetPhysicalDeviceImageFormatProperties;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600185 PFN_vkCreateDevice CreateDevice;
Tony Barbour59a47322015-06-24 16:06:58 -0600186 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Cody Northropd0802882015-08-03 17:04:53 -0600187 PFN_vkGetPhysicalDeviceQueueFamilyProperties GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour59a47322015-06-24 16:06:58 -0600188 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600189 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600190 PFN_vkGetPhysicalDeviceSparseImageFormatProperties GetPhysicalDeviceSparseImageFormatProperties;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600191 PFN_vkDbgCreateMsgCallback DbgCreateMsgCallback;
192 PFN_vkDbgDestroyMsgCallback DbgDestroyMsgCallback;
Ian Elliott7e40db92015-08-21 15:09:33 -0600193 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Ian Elliott486c5502015-11-19 16:05:09 -0700194 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR GetPhysicalDeviceSurfaceCapabilitiesKHR;
195 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
196 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR GetPhysicalDeviceSurfacePresentModesKHR;
Ian Elliott919fa302015-11-24 15:39:10 -0700197#ifdef VK_USE_PLATFORM_WIN32_KHR
198 PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR GetPhysicalDeviceWin32PresentationSupportKHR;
199#endif
200#ifdef VK_USE_PLATFORM_MIR_KHR
201 PFN_vkGetPhysicalDeviceMirPresentationSupportKHR GetPhysicalDeviceMirPresentvationSupportKHR;
202#endif
203#ifdef VK_USE_PLATFORM_WAYLAND_KHR
204 PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR GetPhysicalDeviceWaylandPresentationSupportKHR;
205#endif
206#ifdef VK_USE_PLATFORM_XCB_KHR
207 PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR GetPhysicalDeviceXcbPresentationSupportKHR;
Mark Lobodzinskifaa90812015-11-25 13:26:15 -0700208 PFN_vkCreateXcbSurfaceKHR vkCreateXcbSurfaceKHR;
Ian Elliott919fa302015-11-24 15:39:10 -0700209#endif
210#ifdef VK_USE_PLATFORM_XLIB_KHR
211 PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR GetPhysicalDeviceXlibPresentationSupportKHR;
212#endif
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600213
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600214 struct loader_icd *next;
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600215};
216
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600217/* per ICD library structure */
218struct loader_icd_libs {
219 size_t capacity;
220 uint32_t count;
221 struct loader_scanned_icds *list;
222};
223
Jon Ashburn953bb3c2015-06-10 16:11:42 -0600224/* per instance structure */
Jon Ashburn27cd5842015-05-12 17:26:48 -0600225struct loader_instance {
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600226 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
227
Jon Ashburn27cd5842015-05-12 17:26:48 -0600228 uint32_t total_gpu_count;
Jon Ashburn24cd4be2015-11-01 14:04:06 -0700229 struct loader_physical_device *phys_devs;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600230 uint32_t total_icd_count;
Jon Ashburn27cd5842015-05-12 17:26:48 -0600231 struct loader_icd *icds;
232 struct loader_instance *next;
Jon Ashburn5c6a46f2015-08-14 14:49:22 -0600233 struct loader_extension_list ext_list; // icds and loaders extensions
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600234 struct loader_icd_libs icd_libs;
Jon Ashburn3d002332015-08-20 16:35:30 -0600235 struct loader_layer_list instance_layer_list;
236 struct loader_layer_list device_layer_list;
Jon Ashburnfc1031e2015-11-17 15:31:02 -0700237 struct loader_dispatch_hash_entry disp_hash[MAX_NUM_DEV_EXTS];
Jon Ashburn3d002332015-08-20 16:35:30 -0600238
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600239 struct loader_msg_callback_map_entry *icd_msg_callback_map;
240
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600241 struct loader_layer_list activated_layer_list;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600242
243 bool debug_report_enabled;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600244 VkLayerDbgFunctionNode *DbgFunctionHead;
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600245
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800246 VkAllocationCallbacks alloc_callbacks;
Ian Elliottd3ef02f2015-07-06 14:36:13 -0600247
Ian Elliott954fa342015-10-30 15:28:23 -0600248 bool wsi_surface_enabled;
249#ifdef _WIN32
250 bool wsi_win32_surface_enabled;
251#else // _WIN32
252 bool wsi_mir_surface_enabled;
253 bool wsi_wayland_surface_enabled;
254 bool wsi_xcb_surface_enabled;
255 bool wsi_xlib_surface_enabled;
256#endif // _WIN32
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600257};
258
Jon Ashburn24cd4be2015-11-01 14:04:06 -0700259/* per enumerated PhysicalDevice structure */
260struct loader_physical_device {
261 VkLayerInstanceDispatchTable *disp; // must be first entry in structure
262 struct loader_instance *this_instance;
263 struct loader_icd *this_icd;
264 VkPhysicalDevice phys_dev; // object from ICD
265 /*
266 * Fill in the cache of available device extensions from
Jon Ashburn00eb6c02015-11-02 17:40:01 -0700267 * this physical device. This cache can be used during CreateDevice
Jon Ashburn24cd4be2015-11-01 14:04:06 -0700268 */
269 struct loader_extension_list device_extension_cache;
270};
271
Jon Ashburn27cd5842015-05-12 17:26:48 -0600272struct loader_struct {
273 struct loader_instance *instances;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600274
275 unsigned int loaded_layer_lib_count;
Courtney Goeltzenleuchterdad30df2015-10-07 09:00:34 -0600276 size_t loaded_layer_lib_capacity;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600277 struct loader_lib_info *loaded_layer_lib_list;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600278 // TODO add ref counting of ICD libraries
Jon Ashburn2d0c4bb2015-07-06 15:40:35 -0600279 // TODO use this struct loader_layer_library_list scanned_layer_libraries;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600280 // TODO add list of icd libraries for ref counting them for closure
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600281};
282
283struct loader_scanned_icds {
284 char *lib_name;
285 loader_platform_dl_handle handle;
Jon Ashburn005617f2015-11-17 17:35:40 -0700286 uint32_t api_version;
Jon Ashburnc624c882015-07-16 10:17:29 -0600287 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600288 PFN_vkCreateInstance CreateInstance;
Courtney Goeltzenleuchter35985f62015-09-14 17:22:16 -0600289 PFN_vkEnumerateInstanceExtensionProperties EnumerateInstanceExtensionProperties;
Jon Ashburn27cd5842015-05-12 17:26:48 -0600290};
291
Jon Ashburn5ef20602015-07-02 09:40:15 -0600292static inline struct loader_instance *loader_instance(VkInstance instance) {
293 return (struct loader_instance *) instance;
294}
295
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600296static inline void loader_set_dispatch(void* obj, const void *data)
Chia-I Wu5291c762015-04-11 15:34:07 +0800297{
298 *((const void **) obj) = data;
299}
300
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600301static inline VkLayerDispatchTable *loader_get_dispatch(const void* obj)
Chia-I Wu5291c762015-04-11 15:34:07 +0800302{
Jon Ashburn1ed042c2015-05-01 18:00:33 -0600303 return *((VkLayerDispatchTable **) obj);
Chia-I Wu5291c762015-04-11 15:34:07 +0800304}
305
Jon Ashburnfc1031e2015-11-17 15:31:02 -0700306static inline struct loader_dev_dispatch_table *loader_get_dev_dispatch(const void* obj)
307{
308 return *((struct loader_dev_dispatch_table **) obj);
309}
310
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600311static inline VkLayerInstanceDispatchTable *loader_get_instance_dispatch(const void* obj)
Jon Ashburn27cd5842015-05-12 17:26:48 -0600312{
313 return *((VkLayerInstanceDispatchTable **) obj);
314}
315
Tony Barbour1d2cd3f2015-07-03 10:33:54 -0600316static inline void loader_init_dispatch(void* obj, const void *data)
Chia-I Wu5291c762015-04-11 15:34:07 +0800317{
Jon Ashburn40066642015-04-15 13:34:33 -0600318#ifdef DEBUG
Chia-I Wu5291c762015-04-11 15:34:07 +0800319 assert(valid_loader_magic_value(obj) &&
320 "Incompatible ICD, first dword must be initialized to ICD_LOADER_MAGIC. See loader/README.md for details.");
Jon Ashburn40066642015-04-15 13:34:33 -0600321#endif
Chia-I Wu5291c762015-04-11 15:34:07 +0800322
Jon Ashburn1ed042c2015-05-01 18:00:33 -0600323 loader_set_dispatch(obj, data);
Chia-I Wu5291c762015-04-11 15:34:07 +0800324}
325
Jon Ashburn27cd5842015-05-12 17:26:48 -0600326/* global variables used across files */
327extern struct loader_struct loader;
Jon Ashburn87d6aa92015-08-28 15:19:27 -0600328extern THREAD_LOCAL_DECL struct loader_instance *tls_instance;
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600329extern LOADER_PLATFORM_THREAD_ONCE_DEFINITION(once_init);
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600330extern loader_platform_thread_mutex loader_lock;
Jon Ashburn6461ef22015-09-22 13:11:00 -0600331extern loader_platform_thread_mutex loader_json_lock;
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600332extern const VkLayerInstanceDispatchTable instance_disp;
Jon Ashburnbacb0f52015-04-06 10:58:22 -0600333
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600334struct loader_msg_callback_map_entry {
335 VkDbgMsgCallback icd_obj;
336 VkDbgMsgCallback loader_obj;
337};
338
339bool compare_vk_extension_properties(
340 const VkExtensionProperties* op1,
341 const VkExtensionProperties* op2);
342
Jon Ashburn3d002332015-08-20 16:35:30 -0600343VkResult loader_validate_layers(
344 const uint32_t layer_count,
345 const char * const *ppEnabledLayerNames,
346 const struct loader_layer_list *list);
Courtney Goeltzenleuchter3b8c5ff2015-07-06 17:45:08 -0600347
348VkResult loader_validate_instance_extensions(
Jon Ashburn9a4c6aa2015-08-14 11:57:54 -0600349 const struct loader_extension_list *icd_exts,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600350 const struct loader_layer_list *instance_layer,
Courtney Goeltzenleuchter3b8c5ff2015-07-06 17:45:08 -0600351 const VkInstanceCreateInfo* pCreateInfo);
352
Jon Ashburn27cd5842015-05-12 17:26:48 -0600353/* instance layer chain termination entrypoint definitions */
Chia-I Wu9ab61502015-11-06 06:42:02 +0800354VKAPI_ATTR VkResult VKAPI_CALL loader_CreateInstance(
Jon Ashburn27cd5842015-05-12 17:26:48 -0600355 const VkInstanceCreateInfo* pCreateInfo,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800356 const VkAllocationCallbacks* pAllocator,
Jon Ashburn27cd5842015-05-12 17:26:48 -0600357 VkInstance* pInstance);
Chia-I Wu5291c762015-04-11 15:34:07 +0800358
Chia-I Wu9ab61502015-11-06 06:42:02 +0800359VKAPI_ATTR void VKAPI_CALL loader_DestroyInstance(
Chia-I Wuf7458c52015-10-26 21:10:41 +0800360 VkInstance instance,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800361 const VkAllocationCallbacks* pAllocator);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600362
Chia-I Wu9ab61502015-11-06 06:42:02 +0800363VKAPI_ATTR VkResult VKAPI_CALL loader_EnumeratePhysicalDevices(
Jon Ashburn27cd5842015-05-12 17:26:48 -0600364 VkInstance instance,
365 uint32_t* pPhysicalDeviceCount,
366 VkPhysicalDevice* pPhysicalDevices);
Chris Forbesbc0bb772015-06-21 22:55:02 +1200367
Chia-I Wu9ab61502015-11-06 06:42:02 +0800368VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFeatures(
Chris Forbesbc0bb772015-06-21 22:55:02 +1200369 VkPhysicalDevice physicalDevice,
370 VkPhysicalDeviceFeatures* pFeatures);
371
Chia-I Wu9ab61502015-11-06 06:42:02 +0800372VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceFormatProperties(
Chris Forbesbc0bb772015-06-21 22:55:02 +1200373 VkPhysicalDevice physicalDevice,
374 VkFormat format,
375 VkFormatProperties* pFormatInfo);
376
Chia-I Wu9ab61502015-11-06 06:42:02 +0800377VKAPI_ATTR VkResult VKAPI_CALL loader_GetPhysicalDeviceImageFormatProperties(
Chia-I Wu17241042015-10-31 00:31:16 +0800378 VkPhysicalDevice physicalDevice,
Jon Ashburn754864f2015-07-23 18:49:07 -0600379 VkFormat format,
380 VkImageType type,
381 VkImageTiling tiling,
382 VkImageUsageFlags usage,
Courtney Goeltzenleuchtera22097a2015-09-10 13:44:12 -0600383 VkImageCreateFlags flags,
Jon Ashburn754864f2015-07-23 18:49:07 -0600384 VkImageFormatProperties* pImageFormatProperties);
385
Chia-I Wu9ab61502015-11-06 06:42:02 +0800386VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceSparseImageFormatProperties(
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600387 VkPhysicalDevice physicalDevice,
388 VkFormat format,
389 VkImageType type,
Chia-I Wu5c17c962015-10-31 00:31:16 +0800390 VkSampleCountFlagBits samples,
Mark Lobodzinski16e8bef2015-07-03 15:58:09 -0600391 VkImageUsageFlags usage,
392 VkImageTiling tiling,
393 uint32_t* pNumProperties,
394 VkSparseImageFormatProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600395
Chia-I Wu9ab61502015-11-06 06:42:02 +0800396VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceProperties (
Tony Barbour59a47322015-06-24 16:06:58 -0600397 VkPhysicalDevice physicalDevice,
398 VkPhysicalDeviceProperties* pProperties);
399
Chia-I Wu9ab61502015-11-06 06:42:02 +0800400VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceExtensionProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600401 const char *pLayerName, uint32_t *pCount,
Tony Barbour59a47322015-06-24 16:06:58 -0600402 VkExtensionProperties* pProperties);
403
Chia-I Wu9ab61502015-11-06 06:42:02 +0800404VKAPI_ATTR VkResult VKAPI_CALL loader_EnumerateDeviceLayerProperties (VkPhysicalDevice physicalDevice,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600405 uint32_t *pCount,
406 VkLayerProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600407
Chia-I Wu9ab61502015-11-06 06:42:02 +0800408VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceQueueFamilyProperties (
Cody Northropd0802882015-08-03 17:04:53 -0600409 VkPhysicalDevice physicalDevice,
410 uint32_t* pCount,
411 VkQueueFamilyProperties* pProperties);
Tony Barbour59a47322015-06-24 16:06:58 -0600412
Chia-I Wu9ab61502015-11-06 06:42:02 +0800413VKAPI_ATTR void VKAPI_CALL loader_GetPhysicalDeviceMemoryProperties (
Tony Barbour59a47322015-06-24 16:06:58 -0600414 VkPhysicalDevice physicalDevice,
415 VkPhysicalDeviceMemoryProperties * pProperties);
Jon Ashburn6301a0f2015-05-29 13:15:39 -0600416
Chia-I Wu9ab61502015-11-06 06:42:02 +0800417VKAPI_ATTR VkResult VKAPI_CALL loader_CreateDevice(
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600418 VkPhysicalDevice gpu,
419 const VkDeviceCreateInfo* pCreateInfo,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800420 const VkAllocationCallbacks* pAllocator,
Jon Ashburn95a77ba2015-05-15 15:09:35 -0600421 VkDevice* pDevice);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600422
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600423/* helper function definitions */
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600424void loader_initialize(void);
Jon Ashburnbd6c4882015-07-02 12:59:25 -0600425bool has_vk_extension_property_array(
426 const VkExtensionProperties *vk_ext_prop,
427 const uint32_t count,
428 const VkExtensionProperties *ext_array);
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600429bool has_vk_extension_property(
430 const VkExtensionProperties *vk_ext_prop,
431 const struct loader_extension_list *ext_list);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600432
Jon Ashburn24cd4be2015-11-01 14:04:06 -0700433VkResult loader_add_to_ext_list(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600434 const struct loader_instance *inst,
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600435 struct loader_extension_list *ext_list,
436 uint32_t prop_list_count,
Jon Ashburn5c042ea2015-08-04 11:14:18 -0600437 const VkExtensionProperties *props);
Jon Ashburn6e6a2162015-12-10 08:51:10 -0700438void loader_destroy_generic_list(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600439 const struct loader_instance *inst,
Jon Ashburn6e6a2162015-12-10 08:51:10 -0700440 struct loader_generic_list *list);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600441void loader_delete_layer_properties(
442 const struct loader_instance *inst,
443 struct loader_layer_list *layer_list);
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600444void loader_add_to_layer_list(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600445 const struct loader_instance *inst,
Courtney Goeltzenleuchter110fdf92015-06-29 15:39:26 -0600446 struct loader_layer_list *list,
447 uint32_t prop_list_count,
448 const struct loader_layer_properties *props);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600449void loader_scanned_icd_clear(
450 const struct loader_instance *inst,
451 struct loader_icd_libs *icd_libs);
452void loader_icd_scan(
453 const struct loader_instance *inst,
454 struct loader_icd_libs *icds);
Jon Ashburnb82c1852015-08-11 14:49:54 -0600455void loader_layer_scan(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600456 const struct loader_instance *inst,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600457 struct loader_layer_list *instance_layers,
458 struct loader_layer_list *device_layers);
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600459void loader_get_icd_loader_instance_extensions(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600460 const struct loader_instance *inst,
Jon Ashburn8810c5f2015-08-18 18:04:47 -0600461 struct loader_icd_libs *icd_libs,
462 struct loader_extension_list *inst_exts);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600463struct loader_icd *loader_get_icd_and_device(
464 const VkDevice device,
465 struct loader_device **found_dev);
Jon Ashburnfc1031e2015-11-17 15:31:02 -0700466void *loader_dev_ext_gpa(
467 struct loader_instance *inst,
468 const char *funcName);
469void *loader_get_dev_ext_trampoline(
470 uint32_t index);
Jon Ashburne0e64572015-09-30 12:56:42 -0600471struct loader_instance *loader_get_instance(
472 const VkInstance instance);
Jon Ashburne39a4f82015-08-28 13:38:21 -0600473void loader_remove_logical_device(
474 const struct loader_instance *inst,
Jon Ashburn781a7ae2015-11-19 15:43:26 -0700475 struct loader_icd *icd,
476 struct loader_device *found_dev);
Jon Ashburnb82c1852015-08-11 14:49:54 -0600477VkResult loader_enable_instance_layers(
478 struct loader_instance *inst,
479 const VkInstanceCreateInfo *pCreateInfo,
480 const struct loader_layer_list *instance_layers);
Jon Ashburndc6fcad2015-06-10 10:06:06 -0600481void loader_deactivate_instance_layers(struct loader_instance *instance);
Jon Ashburn27cd5842015-05-12 17:26:48 -0600482uint32_t loader_activate_instance_layers(struct loader_instance *inst);
Courtney Goeltzenleuchterd971b612015-06-17 20:51:59 -0600483void loader_activate_instance_layer_extensions(struct loader_instance *inst);
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600484
485void* loader_heap_alloc(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600486 const struct loader_instance *instance,
Jon Ashburnb82c1852015-08-11 14:49:54 -0600487 size_t size,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800488 VkSystemAllocationScope allocationScope);
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600489
Courtney Goeltzenleuchter7f5aafc2015-07-05 11:28:29 -0600490void loader_heap_free(
Jon Ashburne39a4f82015-08-28 13:38:21 -0600491 const struct loader_instance *instance,
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800492 void *pMemory);
Jon Ashburn87d6aa92015-08-28 15:19:27 -0600493
494void *loader_tls_heap_alloc(size_t size);
495
Chia-I Wu3432a0c2015-10-27 18:04:07 +0800496void loader_tls_heap_free(void *pMemory);
Chia-I Wu19300602014-08-04 08:03:57 +0800497#endif /* LOADER_H */