blob: 0035e7bf09485ee8d65ab5b1da8de4baaacaf8e9 [file] [log] [blame]
Karl Schultz673df322016-02-02 12:32:50 -07001//
2// File: vk_layer.h
3//
4/*
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
6 * Copyright (c) 2015-2016 Valve Corporation
7 * Copyright (c) 2015-2016 LunarG, Inc.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and/or associated documentation files (the "Materials"), to
11 * deal in the Materials without restriction, including without limitation the
12 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
13 * sell copies of the Materials, and to permit persons to whom the Materials are
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice(s) and this permission notice shall be included in
17 * all copies or substantial portions of the Materials.
18 *
Karl Schultz673df322016-02-02 12:32:50 -070019 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22 *
23 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
24 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
25 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE
26 * USE OR OTHER DEALINGS IN THE MATERIALS.
27 *
28 */
29
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060030/* Need to define dispatch table
31 * Core struct can then have ptr to dispatch table at the top
32 * Along with object ptrs for current and next OBJ
33 */
34#pragma once
35
Karl Schultz78b0dd42016-02-10 15:41:43 -070036#include "vulkan.h"
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060037#if defined(__GNUC__) && __GNUC__ >= 4
Karl Schultz673df322016-02-02 12:32:50 -070038#define VK_LAYER_EXPORT __attribute__((visibility("default")))
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060039#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
Karl Schultz673df322016-02-02 12:32:50 -070040#define VK_LAYER_EXPORT __attribute__((visibility("default")))
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060041#else
Karl Schultz673df322016-02-02 12:32:50 -070042#define VK_LAYER_EXPORT
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060043#endif
44
Karl Schultz673df322016-02-02 12:32:50 -070045typedef struct VkLayerDispatchTable_ {
Jon Ashburn1245cec2015-05-18 13:20:15 -060046 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060047 PFN_vkDestroyDevice DestroyDevice;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060048 PFN_vkGetDeviceQueue GetDeviceQueue;
49 PFN_vkQueueSubmit QueueSubmit;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060050 PFN_vkQueueWaitIdle QueueWaitIdle;
51 PFN_vkDeviceWaitIdle DeviceWaitIdle;
Chia-I Wu1f851912015-10-27 18:04:07 +080052 PFN_vkAllocateMemory AllocateMemory;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060053 PFN_vkFreeMemory FreeMemory;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060054 PFN_vkMapMemory MapMemory;
55 PFN_vkUnmapMemory UnmapMemory;
Courtney Goeltzenleuchtera569a502015-04-29 17:16:21 -060056 PFN_vkFlushMappedMemoryRanges FlushMappedMemoryRanges;
57 PFN_vkInvalidateMappedMemoryRanges InvalidateMappedMemoryRanges;
Courtney Goeltzenleuchterd040c5c2015-07-09 21:57:28 -060058 PFN_vkGetDeviceMemoryCommitment GetDeviceMemoryCommitment;
Mark Lobodzinski83d4e6a2015-07-03 15:58:09 -060059 PFN_vkGetImageSparseMemoryRequirements GetImageSparseMemoryRequirements;
Tony Barbourde4124d2015-07-03 10:33:54 -060060 PFN_vkGetImageMemoryRequirements GetImageMemoryRequirements;
61 PFN_vkGetBufferMemoryRequirements GetBufferMemoryRequirements;
62 PFN_vkBindImageMemory BindImageMemory;
63 PFN_vkBindBufferMemory BindBufferMemory;
Chia-I Wu06809d52015-10-26 16:55:27 +080064 PFN_vkQueueBindSparse QueueBindSparse;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060065 PFN_vkCreateFence CreateFence;
Tony Barbourde4124d2015-07-03 10:33:54 -060066 PFN_vkDestroyFence DestroyFence;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060067 PFN_vkGetFenceStatus GetFenceStatus;
68 PFN_vkResetFences ResetFences;
69 PFN_vkWaitForFences WaitForFences;
70 PFN_vkCreateSemaphore CreateSemaphore;
Tony Barbourde4124d2015-07-03 10:33:54 -060071 PFN_vkDestroySemaphore DestroySemaphore;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060072 PFN_vkCreateEvent CreateEvent;
Tony Barbourde4124d2015-07-03 10:33:54 -060073 PFN_vkDestroyEvent DestroyEvent;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060074 PFN_vkGetEventStatus GetEventStatus;
75 PFN_vkSetEvent SetEvent;
76 PFN_vkResetEvent ResetEvent;
77 PFN_vkCreateQueryPool CreateQueryPool;
Tony Barbourde4124d2015-07-03 10:33:54 -060078 PFN_vkDestroyQueryPool DestroyQueryPool;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060079 PFN_vkGetQueryPoolResults GetQueryPoolResults;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060080 PFN_vkCreateBuffer CreateBuffer;
Tony Barbourde4124d2015-07-03 10:33:54 -060081 PFN_vkDestroyBuffer DestroyBuffer;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060082 PFN_vkCreateBufferView CreateBufferView;
Tony Barbourde4124d2015-07-03 10:33:54 -060083 PFN_vkDestroyBufferView DestroyBufferView;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060084 PFN_vkCreateImage CreateImage;
Tony Barbourde4124d2015-07-03 10:33:54 -060085 PFN_vkDestroyImage DestroyImage;
Tony Barbour426b9052015-06-24 16:06:58 -060086 PFN_vkGetImageSubresourceLayout GetImageSubresourceLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060087 PFN_vkCreateImageView CreateImageView;
Tony Barbourde4124d2015-07-03 10:33:54 -060088 PFN_vkDestroyImageView DestroyImageView;
Courtney Goeltzenleuchter0b29b0d2015-06-24 18:24:19 -060089 PFN_vkCreateShaderModule CreateShaderModule;
Tony Barbourde4124d2015-07-03 10:33:54 -060090 PFN_vkDestroyShaderModule DestroyShaderModule;
Jon Ashburn0d60d272015-07-09 15:02:25 -060091 PFN_vkCreatePipelineCache CreatePipelineCache;
92 PFN_vkDestroyPipelineCache DestroyPipelineCache;
Jon Ashburn0d60d272015-07-09 15:02:25 -060093 PFN_vkGetPipelineCacheData GetPipelineCacheData;
94 PFN_vkMergePipelineCaches MergePipelineCaches;
95 PFN_vkCreateGraphicsPipelines CreateGraphicsPipelines;
96 PFN_vkCreateComputePipelines CreateComputePipelines;
Tony Barbourde4124d2015-07-03 10:33:54 -060097 PFN_vkDestroyPipeline DestroyPipeline;
Mark Lobodzinski556f7212015-04-17 14:11:39 -050098 PFN_vkCreatePipelineLayout CreatePipelineLayout;
Tony Barbourde4124d2015-07-03 10:33:54 -060099 PFN_vkDestroyPipelineLayout DestroyPipelineLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600100 PFN_vkCreateSampler CreateSampler;
Tony Barbourde4124d2015-07-03 10:33:54 -0600101 PFN_vkDestroySampler DestroySampler;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600102 PFN_vkCreateDescriptorSetLayout CreateDescriptorSetLayout;
Tony Barbourde4124d2015-07-03 10:33:54 -0600103 PFN_vkDestroyDescriptorSetLayout DestroyDescriptorSetLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600104 PFN_vkCreateDescriptorPool CreateDescriptorPool;
Tony Barbourde4124d2015-07-03 10:33:54 -0600105 PFN_vkDestroyDescriptorPool DestroyDescriptorPool;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600106 PFN_vkResetDescriptorPool ResetDescriptorPool;
Chia-I Wu1f851912015-10-27 18:04:07 +0800107 PFN_vkAllocateDescriptorSets AllocateDescriptorSets;
Tony Barbourb857d312015-07-10 10:50:45 -0600108 PFN_vkFreeDescriptorSets FreeDescriptorSets;
Chia-I Wu8cd8ecd2015-05-25 16:27:55 +0800109 PFN_vkUpdateDescriptorSets UpdateDescriptorSets;
Jon Ashburna25465c2015-07-23 18:48:20 -0600110 PFN_vkCreateFramebuffer CreateFramebuffer;
111 PFN_vkDestroyFramebuffer DestroyFramebuffer;
112 PFN_vkCreateRenderPass CreateRenderPass;
113 PFN_vkDestroyRenderPass DestroyRenderPass;
114 PFN_vkGetRenderAreaGranularity GetRenderAreaGranularity;
Cody Northropf02f9f82015-07-09 18:08:05 -0600115 PFN_vkCreateCommandPool CreateCommandPool;
116 PFN_vkDestroyCommandPool DestroyCommandPool;
117 PFN_vkResetCommandPool ResetCommandPool;
Chia-I Wu1f851912015-10-27 18:04:07 +0800118 PFN_vkAllocateCommandBuffers AllocateCommandBuffers;
Courtney Goeltzenleuchter831c1832015-10-23 14:21:05 -0600119 PFN_vkFreeCommandBuffers FreeCommandBuffers;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600120 PFN_vkBeginCommandBuffer BeginCommandBuffer;
121 PFN_vkEndCommandBuffer EndCommandBuffer;
122 PFN_vkResetCommandBuffer ResetCommandBuffer;
123 PFN_vkCmdBindPipeline CmdBindPipeline;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600124 PFN_vkCmdBindDescriptorSets CmdBindDescriptorSets;
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -0600125 PFN_vkCmdBindVertexBuffers CmdBindVertexBuffers;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600126 PFN_vkCmdBindIndexBuffer CmdBindIndexBuffer;
Courtney Goeltzenleuchter09772bb2015-09-17 15:06:17 -0600127 PFN_vkCmdSetViewport CmdSetViewport;
Courtney Goeltzenleuchter932cdb52015-09-21 11:44:06 -0600128 PFN_vkCmdSetScissor CmdSetScissor;
Courtney Goeltzenleuchter09772bb2015-09-17 15:06:17 -0600129 PFN_vkCmdSetLineWidth CmdSetLineWidth;
130 PFN_vkCmdSetDepthBias CmdSetDepthBias;
131 PFN_vkCmdSetBlendConstants CmdSetBlendConstants;
132 PFN_vkCmdSetDepthBounds CmdSetDepthBounds;
133 PFN_vkCmdSetStencilCompareMask CmdSetStencilCompareMask;
134 PFN_vkCmdSetStencilWriteMask CmdSetStencilWriteMask;
135 PFN_vkCmdSetStencilReference CmdSetStencilReference;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600136 PFN_vkCmdDraw CmdDraw;
137 PFN_vkCmdDrawIndexed CmdDrawIndexed;
138 PFN_vkCmdDrawIndirect CmdDrawIndirect;
139 PFN_vkCmdDrawIndexedIndirect CmdDrawIndexedIndirect;
140 PFN_vkCmdDispatch CmdDispatch;
141 PFN_vkCmdDispatchIndirect CmdDispatchIndirect;
142 PFN_vkCmdCopyBuffer CmdCopyBuffer;
143 PFN_vkCmdCopyImage CmdCopyImage;
144 PFN_vkCmdBlitImage CmdBlitImage;
145 PFN_vkCmdCopyBufferToImage CmdCopyBufferToImage;
146 PFN_vkCmdCopyImageToBuffer CmdCopyImageToBuffer;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600147 PFN_vkCmdUpdateBuffer CmdUpdateBuffer;
148 PFN_vkCmdFillBuffer CmdFillBuffer;
149 PFN_vkCmdClearColorImage CmdClearColorImage;
Chris Forbes2951d7d2015-06-22 17:21:59 +1200150 PFN_vkCmdClearDepthStencilImage CmdClearDepthStencilImage;
Courtney Goeltzenleuchter9feb0732015-10-15 16:51:05 -0600151 PFN_vkCmdClearAttachments CmdClearAttachments;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600152 PFN_vkCmdResolveImage CmdResolveImage;
153 PFN_vkCmdSetEvent CmdSetEvent;
154 PFN_vkCmdResetEvent CmdResetEvent;
155 PFN_vkCmdWaitEvents CmdWaitEvents;
156 PFN_vkCmdPipelineBarrier CmdPipelineBarrier;
157 PFN_vkCmdBeginQuery CmdBeginQuery;
158 PFN_vkCmdEndQuery CmdEndQuery;
159 PFN_vkCmdResetQueryPool CmdResetQueryPool;
160 PFN_vkCmdWriteTimestamp CmdWriteTimestamp;
Courtney Goeltzenleuchter98049062015-04-15 18:21:13 -0600161 PFN_vkCmdCopyQueryPoolResults CmdCopyQueryPoolResults;
Jon Ashburna25465c2015-07-23 18:48:20 -0600162 PFN_vkCmdPushConstants CmdPushConstants;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600163 PFN_vkCmdBeginRenderPass CmdBeginRenderPass;
Chia-I Wuc278df82015-07-07 11:50:03 +0800164 PFN_vkCmdNextSubpass CmdNextSubpass;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600165 PFN_vkCmdEndRenderPass CmdEndRenderPass;
Chia-I Wu88eaa3b2015-06-26 15:34:39 +0800166 PFN_vkCmdExecuteCommands CmdExecuteCommands;
Ian Elliott338dedb2015-08-21 15:09:33 -0600167 PFN_vkCreateSwapchainKHR CreateSwapchainKHR;
168 PFN_vkDestroySwapchainKHR DestroySwapchainKHR;
169 PFN_vkGetSwapchainImagesKHR GetSwapchainImagesKHR;
170 PFN_vkAcquireNextImageKHR AcquireNextImageKHR;
171 PFN_vkQueuePresentKHR QueuePresentKHR;
Jon Ashburn301c5f02015-04-06 10:58:22 -0600172} VkLayerDispatchTable;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600173
Karl Schultz673df322016-02-02 12:32:50 -0700174typedef struct VkLayerInstanceDispatchTable_ {
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600175 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600176 PFN_vkDestroyInstance DestroyInstance;
177 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbesd7576302015-06-21 22:55:02 +1200178 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Karl Schultz673df322016-02-02 12:32:50 -0700179 PFN_vkGetPhysicalDeviceImageFormatProperties
180 GetPhysicalDeviceImageFormatProperties;
Courtney Goeltzenleuchter4da96aa2015-07-12 12:52:09 -0600181 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Karl Schultz673df322016-02-02 12:32:50 -0700182 PFN_vkGetPhysicalDeviceSparseImageFormatProperties
183 GetPhysicalDeviceSparseImageFormatProperties;
Tony Barbour426b9052015-06-24 16:06:58 -0600184 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Karl Schultz673df322016-02-02 12:32:50 -0700185 PFN_vkGetPhysicalDeviceQueueFamilyProperties
186 GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour426b9052015-06-24 16:06:58 -0600187 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchter74c4ce92015-09-14 17:22:16 -0600188 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
189 PFN_vkEnumerateDeviceLayerProperties EnumerateDeviceLayerProperties;
Jon Ashburn6911e8c2015-11-23 18:55:15 -0700190 PFN_vkDestroySurfaceKHR DestroySurfaceKHR;
Ian Elliott338dedb2015-08-21 15:09:33 -0600191 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700192 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR
193 GetPhysicalDeviceSurfaceCapabilitiesKHR;
Ian Elliottbb03f402015-11-18 15:20:45 -0700194 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700195 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR
196 GetPhysicalDeviceSurfacePresentModesKHR;
Courtney Goeltzenleuchteracb13592015-12-09 15:48:16 -0700197 PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallbackEXT;
198 PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallbackEXT;
199 PFN_vkDebugReportMessageEXT DebugReportMessageEXT;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700200#ifdef VK_USE_PLATFORM_MIR_KHR
201 PFN_vkCreateMirSurfaceKHR CreateMirSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700202 PFN_vkGetPhysicalDeviceMirPresentationSupportKHR
203 GetPhysicalDeviceMirPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700204#endif
205#ifdef VK_USE_PLATFORM_WAYLAND_KHR
206 PFN_vkCreateWaylandSurfaceKHR CreateWaylandSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700207 PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
208 GetPhysicalDeviceWaylandPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700209#endif
210#ifdef VK_USE_PLATFORM_WIN32_KHR
211 PFN_vkCreateWin32SurfaceKHR CreateWin32SurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700212 PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR
213 GetPhysicalDeviceWin32PresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700214#endif
215#ifdef VK_USE_PLATFORM_XCB_KHR
216 PFN_vkCreateXcbSurfaceKHR CreateXcbSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700217 PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR
218 GetPhysicalDeviceXcbPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700219#endif
220#ifdef VK_USE_PLATFORM_XLIB_KHR
221 PFN_vkCreateXlibSurfaceKHR CreateXlibSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700222 PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR
223 GetPhysicalDeviceXlibPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700224#endif
Mark Lobodzinskib3e934d2015-12-10 16:25:21 -0700225#ifdef VK_USE_PLATFORM_ANDROID_KHR
226 PFN_vkCreateAndroidSurfaceKHR CreateAndroidSurfaceKHR;
227#endif
Jon Ashburn00df0452016-03-08 09:30:30 -0700228 PFN_vkGetPhysicalDeviceDisplayPropertiesKHR
229 GetPhysicalDeviceDisplayPropertiesKHR;
230 PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR
231 GetPhysicalDeviceDisplayPlanePropertiesKHR;
232 PFN_vkGetDisplayPlaneSupportedDisplaysKHR
233 GetDisplayPlaneSupportedDisplaysKHR;
234 PFN_vkGetDisplayModePropertiesKHR
235 GetDisplayModePropertiesKHR;
236 PFN_vkCreateDisplayModeKHR
237 CreateDisplayModeKHR;
238 PFN_vkGetDisplayPlaneCapabilitiesKHR
239 GetDisplayPlaneCapabilitiesKHR;
240 PFN_vkCreateDisplayPlaneSurfaceKHR
241 CreateDisplayPlaneSurfaceKHR;
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600242} VkLayerInstanceDispatchTable;
243
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600244// LL node for tree of dbg callback functions
Karl Schultz673df322016-02-02 12:32:50 -0700245typedef struct VkLayerDbgFunctionNode_ {
Courtney Goeltzenleuchteracb13592015-12-09 15:48:16 -0700246 VkDebugReportCallbackEXT msgCallback;
247 PFN_vkDebugReportCallbackEXT pfnMsgCallback;
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600248 VkFlags msgFlags;
Courtney Goeltzenleuchter240fb9f2016-01-18 17:42:08 -0700249 void *pUserData;
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600250 struct VkLayerDbgFunctionNode_ *pNext;
251} VkLayerDbgFunctionNode;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600252
Karl Schultz673df322016-02-02 12:32:50 -0700253typedef enum VkLayerDbgAction_ {
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600254 VK_DBG_LAYER_ACTION_IGNORE = 0x0,
255 VK_DBG_LAYER_ACTION_CALLBACK = 0x1,
256 VK_DBG_LAYER_ACTION_LOG_MSG = 0x2,
Courtney Goeltzenleuchterb94f0512015-10-05 14:41:34 -0600257 VK_DBG_LAYER_ACTION_BREAK = 0x4,
258 VK_DBG_LAYER_ACTION_DEBUG_OUTPUT = 0x8,
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600259} VkLayerDbgAction;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600260
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600261// ------------------------------------------------------------------------------------------------
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700262// CreateInstance and CreateDevice support structures
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700263
Jon Ashburn7ec8ec82016-03-29 11:16:01 -0600264/* Sub type of structure for instance and device loader ext of CreateInfo.
ttyiof6493a12016-04-10 22:07:28 +0800265 * When sType == VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO
266 * or sType == VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO
Jon Ashburn7ec8ec82016-03-29 11:16:01 -0600267 * then VkLayerFunction indicates struct type pointed to by pNext
268 */
Karl Schultz673df322016-02-02 12:32:50 -0700269typedef enum VkLayerFunction_ {
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700270 VK_LAYER_LINK_INFO = 0,
Jon Ashburn94d58ea2016-03-31 10:52:22 -0600271 VK_LOADER_DATA_CALLBACK = 1
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700272} VkLayerFunction;
273
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700274typedef struct VkLayerInstanceLink_ {
Karl Schultz673df322016-02-02 12:32:50 -0700275 struct VkLayerInstanceLink_ *pNext;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700276 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
277} VkLayerInstanceLink;
278
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700279/*
280 * When creating the device chain the loader needs to pass
281 * down information about it's device structure needed at
282 * the end of the chain. Passing the data via the
283 * VkLayerDeviceInfo avoids issues with finding the
284 * exact instance being used.
285 */
286typedef struct VkLayerDeviceInfo_ {
287 void *device_info;
288 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
289} VkLayerDeviceInfo;
290
Jon Ashburn7ec8ec82016-03-29 11:16:01 -0600291typedef VkResult (VKAPI_PTR *PFN_vkSetInstanceLoaderData)(VkInstance instance,
292 void *object);
Jon Ashburn94d58ea2016-03-31 10:52:22 -0600293typedef VkResult (VKAPI_PTR *PFN_vkSetDeviceLoaderData)(VkDevice device,
294 void *object);
Jon Ashburn7ec8ec82016-03-29 11:16:01 -0600295
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700296typedef struct {
Vinjn Zhangdc1ebf02016-04-06 15:38:24 +0800297 VkStructureType sType; // VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO
Karl Schultz673df322016-02-02 12:32:50 -0700298 const void *pNext;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700299 VkLayerFunction function;
300 union {
Karl Schultz673df322016-02-02 12:32:50 -0700301 VkLayerInstanceLink *pLayerInfo;
Jon Ashburn7ec8ec82016-03-29 11:16:01 -0600302 PFN_vkSetInstanceLoaderData pfnSetInstanceLoaderData;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700303 } u;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700304} VkLayerInstanceCreateInfo;
305
306typedef struct VkLayerDeviceLink_ {
Karl Schultz673df322016-02-02 12:32:50 -0700307 struct VkLayerDeviceLink_ *pNext;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700308 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
309 PFN_vkGetDeviceProcAddr pfnNextGetDeviceProcAddr;
310} VkLayerDeviceLink;
311
312typedef struct {
Vinjn Zhangdc1ebf02016-04-06 15:38:24 +0800313 VkStructureType sType; // VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO
Karl Schultz673df322016-02-02 12:32:50 -0700314 const void *pNext;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700315 VkLayerFunction function;
316 union {
Karl Schultz673df322016-02-02 12:32:50 -0700317 VkLayerDeviceLink *pLayerInfo;
Jon Ashburn94d58ea2016-03-31 10:52:22 -0600318 PFN_vkSetDeviceLoaderData pfnSetDeviceLoaderData;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700319 } u;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700320} VkLayerDeviceCreateInfo;
321