blob: 4735beefea7688ad80ba572447b2b85c1b53e1fb [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"
37#include "vk_ext_debug_report.h"
38#include "vk_lunarg_debug_marker.h"
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060039#if defined(__GNUC__) && __GNUC__ >= 4
Karl Schultz673df322016-02-02 12:32:50 -070040#define VK_LAYER_EXPORT __attribute__((visibility("default")))
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060041#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
Karl Schultz673df322016-02-02 12:32:50 -070042#define VK_LAYER_EXPORT __attribute__((visibility("default")))
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060043#else
Karl Schultz673df322016-02-02 12:32:50 -070044#define VK_LAYER_EXPORT
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -060045#endif
46
Karl Schultz673df322016-02-02 12:32:50 -070047typedef struct VkLayerDispatchTable_ {
Jon Ashburn1245cec2015-05-18 13:20:15 -060048 PFN_vkGetDeviceProcAddr GetDeviceProcAddr;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060049 PFN_vkDestroyDevice DestroyDevice;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060050 PFN_vkGetDeviceQueue GetDeviceQueue;
51 PFN_vkQueueSubmit QueueSubmit;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060052 PFN_vkQueueWaitIdle QueueWaitIdle;
53 PFN_vkDeviceWaitIdle DeviceWaitIdle;
Chia-I Wu1f851912015-10-27 18:04:07 +080054 PFN_vkAllocateMemory AllocateMemory;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060055 PFN_vkFreeMemory FreeMemory;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060056 PFN_vkMapMemory MapMemory;
57 PFN_vkUnmapMemory UnmapMemory;
Courtney Goeltzenleuchtera569a502015-04-29 17:16:21 -060058 PFN_vkFlushMappedMemoryRanges FlushMappedMemoryRanges;
59 PFN_vkInvalidateMappedMemoryRanges InvalidateMappedMemoryRanges;
Courtney Goeltzenleuchterd040c5c2015-07-09 21:57:28 -060060 PFN_vkGetDeviceMemoryCommitment GetDeviceMemoryCommitment;
Mark Lobodzinski83d4e6a2015-07-03 15:58:09 -060061 PFN_vkGetImageSparseMemoryRequirements GetImageSparseMemoryRequirements;
Tony Barbourde4124d2015-07-03 10:33:54 -060062 PFN_vkGetImageMemoryRequirements GetImageMemoryRequirements;
63 PFN_vkGetBufferMemoryRequirements GetBufferMemoryRequirements;
64 PFN_vkBindImageMemory BindImageMemory;
65 PFN_vkBindBufferMemory BindBufferMemory;
Chia-I Wu06809d52015-10-26 16:55:27 +080066 PFN_vkQueueBindSparse QueueBindSparse;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060067 PFN_vkCreateFence CreateFence;
Tony Barbourde4124d2015-07-03 10:33:54 -060068 PFN_vkDestroyFence DestroyFence;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060069 PFN_vkGetFenceStatus GetFenceStatus;
70 PFN_vkResetFences ResetFences;
71 PFN_vkWaitForFences WaitForFences;
72 PFN_vkCreateSemaphore CreateSemaphore;
Tony Barbourde4124d2015-07-03 10:33:54 -060073 PFN_vkDestroySemaphore DestroySemaphore;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060074 PFN_vkCreateEvent CreateEvent;
Tony Barbourde4124d2015-07-03 10:33:54 -060075 PFN_vkDestroyEvent DestroyEvent;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060076 PFN_vkGetEventStatus GetEventStatus;
77 PFN_vkSetEvent SetEvent;
78 PFN_vkResetEvent ResetEvent;
79 PFN_vkCreateQueryPool CreateQueryPool;
Tony Barbourde4124d2015-07-03 10:33:54 -060080 PFN_vkDestroyQueryPool DestroyQueryPool;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060081 PFN_vkGetQueryPoolResults GetQueryPoolResults;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060082 PFN_vkCreateBuffer CreateBuffer;
Tony Barbourde4124d2015-07-03 10:33:54 -060083 PFN_vkDestroyBuffer DestroyBuffer;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060084 PFN_vkCreateBufferView CreateBufferView;
Tony Barbourde4124d2015-07-03 10:33:54 -060085 PFN_vkDestroyBufferView DestroyBufferView;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060086 PFN_vkCreateImage CreateImage;
Tony Barbourde4124d2015-07-03 10:33:54 -060087 PFN_vkDestroyImage DestroyImage;
Tony Barbour426b9052015-06-24 16:06:58 -060088 PFN_vkGetImageSubresourceLayout GetImageSubresourceLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -060089 PFN_vkCreateImageView CreateImageView;
Tony Barbourde4124d2015-07-03 10:33:54 -060090 PFN_vkDestroyImageView DestroyImageView;
Courtney Goeltzenleuchter0b29b0d2015-06-24 18:24:19 -060091 PFN_vkCreateShaderModule CreateShaderModule;
Tony Barbourde4124d2015-07-03 10:33:54 -060092 PFN_vkDestroyShaderModule DestroyShaderModule;
Jon Ashburn0d60d272015-07-09 15:02:25 -060093 PFN_vkCreatePipelineCache CreatePipelineCache;
94 PFN_vkDestroyPipelineCache DestroyPipelineCache;
Jon Ashburn0d60d272015-07-09 15:02:25 -060095 PFN_vkGetPipelineCacheData GetPipelineCacheData;
96 PFN_vkMergePipelineCaches MergePipelineCaches;
97 PFN_vkCreateGraphicsPipelines CreateGraphicsPipelines;
98 PFN_vkCreateComputePipelines CreateComputePipelines;
Tony Barbourde4124d2015-07-03 10:33:54 -060099 PFN_vkDestroyPipeline DestroyPipeline;
Mark Lobodzinski556f7212015-04-17 14:11:39 -0500100 PFN_vkCreatePipelineLayout CreatePipelineLayout;
Tony Barbourde4124d2015-07-03 10:33:54 -0600101 PFN_vkDestroyPipelineLayout DestroyPipelineLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600102 PFN_vkCreateSampler CreateSampler;
Tony Barbourde4124d2015-07-03 10:33:54 -0600103 PFN_vkDestroySampler DestroySampler;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600104 PFN_vkCreateDescriptorSetLayout CreateDescriptorSetLayout;
Tony Barbourde4124d2015-07-03 10:33:54 -0600105 PFN_vkDestroyDescriptorSetLayout DestroyDescriptorSetLayout;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600106 PFN_vkCreateDescriptorPool CreateDescriptorPool;
Tony Barbourde4124d2015-07-03 10:33:54 -0600107 PFN_vkDestroyDescriptorPool DestroyDescriptorPool;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600108 PFN_vkResetDescriptorPool ResetDescriptorPool;
Chia-I Wu1f851912015-10-27 18:04:07 +0800109 PFN_vkAllocateDescriptorSets AllocateDescriptorSets;
Tony Barbourb857d312015-07-10 10:50:45 -0600110 PFN_vkFreeDescriptorSets FreeDescriptorSets;
Chia-I Wu8cd8ecd2015-05-25 16:27:55 +0800111 PFN_vkUpdateDescriptorSets UpdateDescriptorSets;
Jon Ashburna25465c2015-07-23 18:48:20 -0600112 PFN_vkCreateFramebuffer CreateFramebuffer;
113 PFN_vkDestroyFramebuffer DestroyFramebuffer;
114 PFN_vkCreateRenderPass CreateRenderPass;
115 PFN_vkDestroyRenderPass DestroyRenderPass;
116 PFN_vkGetRenderAreaGranularity GetRenderAreaGranularity;
Cody Northropf02f9f82015-07-09 18:08:05 -0600117 PFN_vkCreateCommandPool CreateCommandPool;
118 PFN_vkDestroyCommandPool DestroyCommandPool;
119 PFN_vkResetCommandPool ResetCommandPool;
Chia-I Wu1f851912015-10-27 18:04:07 +0800120 PFN_vkAllocateCommandBuffers AllocateCommandBuffers;
Courtney Goeltzenleuchter831c1832015-10-23 14:21:05 -0600121 PFN_vkFreeCommandBuffers FreeCommandBuffers;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600122 PFN_vkBeginCommandBuffer BeginCommandBuffer;
123 PFN_vkEndCommandBuffer EndCommandBuffer;
124 PFN_vkResetCommandBuffer ResetCommandBuffer;
125 PFN_vkCmdBindPipeline CmdBindPipeline;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600126 PFN_vkCmdBindDescriptorSets CmdBindDescriptorSets;
Courtney Goeltzenleuchter46962942015-04-16 13:38:46 -0600127 PFN_vkCmdBindVertexBuffers CmdBindVertexBuffers;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600128 PFN_vkCmdBindIndexBuffer CmdBindIndexBuffer;
Courtney Goeltzenleuchter09772bb2015-09-17 15:06:17 -0600129 PFN_vkCmdSetViewport CmdSetViewport;
Courtney Goeltzenleuchter932cdb52015-09-21 11:44:06 -0600130 PFN_vkCmdSetScissor CmdSetScissor;
Courtney Goeltzenleuchter09772bb2015-09-17 15:06:17 -0600131 PFN_vkCmdSetLineWidth CmdSetLineWidth;
132 PFN_vkCmdSetDepthBias CmdSetDepthBias;
133 PFN_vkCmdSetBlendConstants CmdSetBlendConstants;
134 PFN_vkCmdSetDepthBounds CmdSetDepthBounds;
135 PFN_vkCmdSetStencilCompareMask CmdSetStencilCompareMask;
136 PFN_vkCmdSetStencilWriteMask CmdSetStencilWriteMask;
137 PFN_vkCmdSetStencilReference CmdSetStencilReference;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600138 PFN_vkCmdDraw CmdDraw;
139 PFN_vkCmdDrawIndexed CmdDrawIndexed;
140 PFN_vkCmdDrawIndirect CmdDrawIndirect;
141 PFN_vkCmdDrawIndexedIndirect CmdDrawIndexedIndirect;
142 PFN_vkCmdDispatch CmdDispatch;
143 PFN_vkCmdDispatchIndirect CmdDispatchIndirect;
144 PFN_vkCmdCopyBuffer CmdCopyBuffer;
145 PFN_vkCmdCopyImage CmdCopyImage;
146 PFN_vkCmdBlitImage CmdBlitImage;
147 PFN_vkCmdCopyBufferToImage CmdCopyBufferToImage;
148 PFN_vkCmdCopyImageToBuffer CmdCopyImageToBuffer;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600149 PFN_vkCmdUpdateBuffer CmdUpdateBuffer;
150 PFN_vkCmdFillBuffer CmdFillBuffer;
151 PFN_vkCmdClearColorImage CmdClearColorImage;
Chris Forbes2951d7d2015-06-22 17:21:59 +1200152 PFN_vkCmdClearDepthStencilImage CmdClearDepthStencilImage;
Courtney Goeltzenleuchter9feb0732015-10-15 16:51:05 -0600153 PFN_vkCmdClearAttachments CmdClearAttachments;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600154 PFN_vkCmdResolveImage CmdResolveImage;
155 PFN_vkCmdSetEvent CmdSetEvent;
156 PFN_vkCmdResetEvent CmdResetEvent;
157 PFN_vkCmdWaitEvents CmdWaitEvents;
158 PFN_vkCmdPipelineBarrier CmdPipelineBarrier;
159 PFN_vkCmdBeginQuery CmdBeginQuery;
160 PFN_vkCmdEndQuery CmdEndQuery;
161 PFN_vkCmdResetQueryPool CmdResetQueryPool;
162 PFN_vkCmdWriteTimestamp CmdWriteTimestamp;
Courtney Goeltzenleuchter98049062015-04-15 18:21:13 -0600163 PFN_vkCmdCopyQueryPoolResults CmdCopyQueryPoolResults;
Jon Ashburna25465c2015-07-23 18:48:20 -0600164 PFN_vkCmdPushConstants CmdPushConstants;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600165 PFN_vkCmdBeginRenderPass CmdBeginRenderPass;
Chia-I Wuc278df82015-07-07 11:50:03 +0800166 PFN_vkCmdNextSubpass CmdNextSubpass;
Courtney Goeltzenleuchter382489d2015-04-10 08:34:15 -0600167 PFN_vkCmdEndRenderPass CmdEndRenderPass;
Chia-I Wu88eaa3b2015-06-26 15:34:39 +0800168 PFN_vkCmdExecuteCommands CmdExecuteCommands;
Ian Elliott338dedb2015-08-21 15:09:33 -0600169 PFN_vkCreateSwapchainKHR CreateSwapchainKHR;
170 PFN_vkDestroySwapchainKHR DestroySwapchainKHR;
171 PFN_vkGetSwapchainImagesKHR GetSwapchainImagesKHR;
172 PFN_vkAcquireNextImageKHR AcquireNextImageKHR;
173 PFN_vkQueuePresentKHR QueuePresentKHR;
Jon Ashburn301c5f02015-04-06 10:58:22 -0600174} VkLayerDispatchTable;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600175
Karl Schultz673df322016-02-02 12:32:50 -0700176typedef struct VkLayerInstanceDispatchTable_ {
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600177 PFN_vkGetInstanceProcAddr GetInstanceProcAddr;
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600178 PFN_vkDestroyInstance DestroyInstance;
179 PFN_vkEnumeratePhysicalDevices EnumeratePhysicalDevices;
Chris Forbesd7576302015-06-21 22:55:02 +1200180 PFN_vkGetPhysicalDeviceFeatures GetPhysicalDeviceFeatures;
Karl Schultz673df322016-02-02 12:32:50 -0700181 PFN_vkGetPhysicalDeviceImageFormatProperties
182 GetPhysicalDeviceImageFormatProperties;
Courtney Goeltzenleuchter4da96aa2015-07-12 12:52:09 -0600183 PFN_vkGetPhysicalDeviceFormatProperties GetPhysicalDeviceFormatProperties;
Karl Schultz673df322016-02-02 12:32:50 -0700184 PFN_vkGetPhysicalDeviceSparseImageFormatProperties
185 GetPhysicalDeviceSparseImageFormatProperties;
Tony Barbour426b9052015-06-24 16:06:58 -0600186 PFN_vkGetPhysicalDeviceProperties GetPhysicalDeviceProperties;
Karl Schultz673df322016-02-02 12:32:50 -0700187 PFN_vkGetPhysicalDeviceQueueFamilyProperties
188 GetPhysicalDeviceQueueFamilyProperties;
Tony Barbour426b9052015-06-24 16:06:58 -0600189 PFN_vkGetPhysicalDeviceMemoryProperties GetPhysicalDeviceMemoryProperties;
Courtney Goeltzenleuchter74c4ce92015-09-14 17:22:16 -0600190 PFN_vkEnumerateDeviceExtensionProperties EnumerateDeviceExtensionProperties;
191 PFN_vkEnumerateDeviceLayerProperties EnumerateDeviceLayerProperties;
Jon Ashburn6911e8c2015-11-23 18:55:15 -0700192 PFN_vkDestroySurfaceKHR DestroySurfaceKHR;
Ian Elliott338dedb2015-08-21 15:09:33 -0600193 PFN_vkGetPhysicalDeviceSurfaceSupportKHR GetPhysicalDeviceSurfaceSupportKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700194 PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR
195 GetPhysicalDeviceSurfaceCapabilitiesKHR;
Ian Elliottbb03f402015-11-18 15:20:45 -0700196 PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700197 PFN_vkGetPhysicalDeviceSurfacePresentModesKHR
198 GetPhysicalDeviceSurfacePresentModesKHR;
Courtney Goeltzenleuchteracb13592015-12-09 15:48:16 -0700199 PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallbackEXT;
200 PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallbackEXT;
201 PFN_vkDebugReportMessageEXT DebugReportMessageEXT;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700202#ifdef VK_USE_PLATFORM_MIR_KHR
203 PFN_vkCreateMirSurfaceKHR CreateMirSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700204 PFN_vkGetPhysicalDeviceMirPresentationSupportKHR
205 GetPhysicalDeviceMirPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700206#endif
207#ifdef VK_USE_PLATFORM_WAYLAND_KHR
208 PFN_vkCreateWaylandSurfaceKHR CreateWaylandSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700209 PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
210 GetPhysicalDeviceWaylandPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700211#endif
212#ifdef VK_USE_PLATFORM_WIN32_KHR
213 PFN_vkCreateWin32SurfaceKHR CreateWin32SurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700214 PFN_vkGetPhysicalDeviceWin32PresentationSupportKHR
215 GetPhysicalDeviceWin32PresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700216#endif
217#ifdef VK_USE_PLATFORM_XCB_KHR
218 PFN_vkCreateXcbSurfaceKHR CreateXcbSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700219 PFN_vkGetPhysicalDeviceXcbPresentationSupportKHR
220 GetPhysicalDeviceXcbPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700221#endif
222#ifdef VK_USE_PLATFORM_XLIB_KHR
223 PFN_vkCreateXlibSurfaceKHR CreateXlibSurfaceKHR;
Karl Schultz673df322016-02-02 12:32:50 -0700224 PFN_vkGetPhysicalDeviceXlibPresentationSupportKHR
225 GetPhysicalDeviceXlibPresentationSupportKHR;
Ian Elliott40c4a1f2015-11-23 10:17:23 -0700226#endif
Mark Lobodzinskib3e934d2015-12-10 16:25:21 -0700227#ifdef VK_USE_PLATFORM_ANDROID_KHR
228 PFN_vkCreateAndroidSurfaceKHR CreateAndroidSurfaceKHR;
229#endif
Jon Ashburn9a9bb642015-05-04 16:27:53 -0600230} VkLayerInstanceDispatchTable;
231
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600232// LL node for tree of dbg callback functions
Karl Schultz673df322016-02-02 12:32:50 -0700233typedef struct VkLayerDbgFunctionNode_ {
Courtney Goeltzenleuchteracb13592015-12-09 15:48:16 -0700234 VkDebugReportCallbackEXT msgCallback;
235 PFN_vkDebugReportCallbackEXT pfnMsgCallback;
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600236 VkFlags msgFlags;
Courtney Goeltzenleuchter240fb9f2016-01-18 17:42:08 -0700237 void *pUserData;
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600238 struct VkLayerDbgFunctionNode_ *pNext;
239} VkLayerDbgFunctionNode;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600240
Karl Schultz673df322016-02-02 12:32:50 -0700241typedef enum VkLayerDbgAction_ {
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600242 VK_DBG_LAYER_ACTION_IGNORE = 0x0,
243 VK_DBG_LAYER_ACTION_CALLBACK = 0x1,
244 VK_DBG_LAYER_ACTION_LOG_MSG = 0x2,
Courtney Goeltzenleuchterb94f0512015-10-05 14:41:34 -0600245 VK_DBG_LAYER_ACTION_BREAK = 0x4,
246 VK_DBG_LAYER_ACTION_DEBUG_OUTPUT = 0x8,
Courtney Goeltzenleuchter1c7c65d2015-06-10 17:39:03 -0600247} VkLayerDbgAction;
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600248
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600249// ------------------------------------------------------------------------------------------------
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700250// CreateInstance and CreateDevice support structures
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700251
Karl Schultz673df322016-02-02 12:32:50 -0700252typedef enum VkLayerFunction_ {
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700253 VK_LAYER_LINK_INFO = 0,
254 VK_LAYER_DEVICE_INFO = 1,
255 VK_LAYER_INSTANCE_INFO = 2
256} VkLayerFunction;
257
258/*
259 * When creating the device chain the loader needs to pass
260 * down information about it's device structure needed at
261 * the end of the chain. Passing the data via the
Jon Ashburn2d81a482016-01-20 08:07:14 -0700262 * VkLayerInstanceInfo avoids issues with finding the
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700263 * exact instance being used.
264 */
265typedef struct VkLayerInstanceInfo_ {
266 void *instance_info;
267 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
268} VkLayerInstanceInfo;
269
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700270typedef struct VkLayerInstanceLink_ {
Karl Schultz673df322016-02-02 12:32:50 -0700271 struct VkLayerInstanceLink_ *pNext;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700272 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
273} VkLayerInstanceLink;
274
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700275/*
276 * When creating the device chain the loader needs to pass
277 * down information about it's device structure needed at
278 * the end of the chain. Passing the data via the
279 * VkLayerDeviceInfo avoids issues with finding the
280 * exact instance being used.
281 */
282typedef struct VkLayerDeviceInfo_ {
283 void *device_info;
284 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
285} VkLayerDeviceInfo;
286
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700287typedef struct {
288 VkStructureType sType; // VK_STRUCTURE_TYPE_LAYER_INSTANCE_CREATE_INFO
Karl Schultz673df322016-02-02 12:32:50 -0700289 const void *pNext;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700290 VkLayerFunction function;
291 union {
Karl Schultz673df322016-02-02 12:32:50 -0700292 VkLayerInstanceLink *pLayerInfo;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700293 VkLayerInstanceInfo instanceInfo;
294 } u;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700295} VkLayerInstanceCreateInfo;
296
297typedef struct VkLayerDeviceLink_ {
Karl Schultz673df322016-02-02 12:32:50 -0700298 struct VkLayerDeviceLink_ *pNext;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700299 PFN_vkGetInstanceProcAddr pfnNextGetInstanceProcAddr;
300 PFN_vkGetDeviceProcAddr pfnNextGetDeviceProcAddr;
301} VkLayerDeviceLink;
302
303typedef struct {
304 VkStructureType sType; // VK_STRUCTURE_TYPE_LAYER_DEVICE_CREATE_INFO
Karl Schultz673df322016-02-02 12:32:50 -0700305 const void *pNext;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700306 VkLayerFunction function;
307 union {
Karl Schultz673df322016-02-02 12:32:50 -0700308 VkLayerDeviceLink *pLayerInfo;
Courtney Goeltzenleuchter2bdf6da2016-01-08 12:18:43 -0700309 VkLayerDeviceInfo deviceInfo;
310 } u;
Courtney Goeltzenleuchter2ff4e1d2016-01-08 11:40:27 -0700311} VkLayerDeviceCreateInfo;
312
313// ------------------------------------------------------------------------------------------------
Courtney Goeltzenleuchter89e99e62015-04-08 18:04:29 -0600314// API functions