blob: 4c7c355502e41de995325c5a89064b1af9e2ea1a [file] [log] [blame]
Tobin Ehlis246ba4d2014-11-18 16:38:08 -07001/*
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -06002 * Vulkan
Tobin Ehlis246ba4d2014-11-18 16:38:08 -07003 *
4 * Copyright (C) 2014 LunarG, Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
Tobin Ehlis0c6f9ee2015-07-03 09:42:57 -060024#include "vk_layer.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060025#include <vector>
Tobin Ehlis257d9742015-07-08 17:08:02 -060026#include "layer_common.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060027
28using namespace std;
29
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070030// Draw State ERROR codes
31typedef enum _DRAW_STATE_ERROR
32{
Tobin Ehlis7265e832015-01-19 08:42:29 -070033 DRAWSTATE_NONE, // Used for INFO & other non-error messages
Tobin Ehlis04178d72015-01-22 10:45:21 -070034 DRAWSTATE_INTERNAL_ERROR, // Error with DrawState internal data structures
Tobin Ehlis7265e832015-01-19 08:42:29 -070035 DRAWSTATE_NO_PIPELINE_BOUND, // Unable to identify a bound pipeline
Tobin Ehlis793ad302015-04-03 12:01:11 -060036 DRAWSTATE_INVALID_POOL, // Invalid DS pool
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070037 DRAWSTATE_INVALID_SET, // Invalid DS
Tobin Ehlis04178d72015-01-22 10:45:21 -070038 DRAWSTATE_INVALID_LAYOUT, // Invalid DS layout
Tobin Ehlis75283bf2015-06-18 15:59:33 -060039 DRAWSTATE_INVALID_PIPELINE, // Invalid Pipeline handle referenced
40 DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, // Attempt to create a pipeline with invalid state
Tobin Ehlisd01f7d62015-02-13 10:26:14 -070041 DRAWSTATE_INVALID_CMD_BUFFER, // Invalid CmdBuffer referenced
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060042 DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, // binding in vkCmdBindVertexData() too large for PSO's pVertexBindingDescriptions array
Tobin Ehlis7265e832015-01-19 08:42:29 -070043 DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, // Invalid dyn state object
44 DRAWSTATE_MISSING_DOT_PROGRAM, // No "dot" program in order to generate png image
Tobin Ehlis04178d72015-01-22 10:45:21 -070045 DRAWSTATE_OUT_OF_MEMORY, // malloc failed
46 DRAWSTATE_DESCRIPTOR_TYPE_MISMATCH, // Type in layout vs. update are not the same
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070047 DRAWSTATE_DESCRIPTOR_UPDATE_OUT_OF_BOUNDS, // Descriptors set for update out of bounds for corresponding layout section
Tobin Ehlis297b9852015-02-23 16:09:58 -070048 DRAWSTATE_INVALID_UPDATE_INDEX, // Index of requested update is invalid for specified descriptors set
Tobin Ehliseba312c2015-04-01 08:40:34 -060049 DRAWSTATE_INVALID_UPDATE_STRUCT, // Struct in DS Update tree is of invalid type
Tobin Ehlisa9f3d762015-05-22 12:38:16 -060050 DRAWSTATE_NUM_SAMPLES_MISMATCH, // Number of samples in bound PSO does not match number in FB of current RenderPass
51 DRAWSTATE_NO_END_CMD_BUFFER, // Must call vkEndCommandBuffer() before QueueSubmit on that cmdBuffer
Tobin Ehlis9c536442015-06-19 13:00:59 -060052 DRAWSTATE_NO_BEGIN_CMD_BUFFER, // Binding cmds or calling End on CB that never had vkBeginCommandBuffer() called on it
Tobin Ehlis59278bf2015-08-18 07:10:58 -060053 DRAWSTATE_CMD_BUFFER_SINGLE_SUBMIT_VIOLATION, // Cmd Buffer created with VK_CMD_BUFFER_OPTIMIZE_ONE_TIME_SUBMIT_BIT flag is submitted multiple times
Tobin Ehlise382c5a2015-06-10 12:57:07 -060054 DRAWSTATE_VIEWPORT_NOT_BOUND, // Draw submitted with no viewport state object bound
Cody Northrop12365112015-08-17 11:10:49 -060055 DRAWSTATE_RASTER_LINE_NOT_BOUND, // Draw submitted with no raster line state object bound
56 DRAWSTATE_RASTER_DEPTH_BIAS_NOT_BOUND, // Draw submitted with no raster depth bias state object bound
Tobin Ehlise382c5a2015-06-10 12:57:07 -060057 DRAWSTATE_COLOR_BLEND_NOT_BOUND, // Draw submitted with no color blend state object bound when color write enabled
58 DRAWSTATE_DEPTH_STENCIL_NOT_BOUND, // Draw submitted with no depth-stencil state object bound when depth write enabled
Tobin Ehlisce132d82015-06-19 15:07:05 -060059 DRAWSTATE_INDEX_BUFFER_NOT_BOUND, // Draw submitted with no depth-stencil state object bound when depth write enabled
Tobin Ehlis429b91d2015-06-22 17:20:50 -060060 DRAWSTATE_PIPELINE_LAYOUT_MISMATCH, // Draw submitted PSO Pipeline layout that doesn't match layout from BindDescriptorSets
Tobin Ehlis259730a2015-06-23 16:13:03 -060061 DRAWSTATE_INVALID_RENDERPASS, // Use of a NULL or otherwise invalid RenderPass object
Tobin Ehlisd1fe4ec2015-06-23 11:22:55 -060062 DRAWSTATE_INVALID_RENDERPASS_CMD, // Invalid cmd submitted while a RenderPass is active
63 DRAWSTATE_NO_ACTIVE_RENDERPASS, // Rendering cmd submitted without an active RenderPass
Tobin Ehlis502480b2015-06-24 15:53:07 -060064 DRAWSTATE_DESCRIPTOR_SET_NOT_UPDATED, // DescriptorSet bound but it was never updated. This is a warning code.
Tobin Ehlis53eddda2015-07-01 16:46:13 -060065 DRAWSTATE_CLEAR_CMD_BEFORE_DRAW, // Clear cmd issued before any Draw in CmdBuffer, should use RenderPass Ops instead
Mark Lobodzinskid9139a62015-08-04 16:24:20 -060066 DRAWSTATE_BEGIN_CB_INVALID_STATE, // Primary/Secondary CB created with mismatched FB/RP information
Tobin Ehlis75283bf2015-06-18 15:59:33 -060067 DRAWSTATE_INVALID_EXTENSION,
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070068} DRAW_STATE_ERROR;
Tobin Ehlis5742e772014-11-20 09:49:17 -070069
70typedef enum _DRAW_TYPE
71{
72 DRAW = 0,
73 DRAW_INDEXED = 1,
74 DRAW_INDIRECT = 2,
75 DRAW_INDEXED_INDIRECT = 3,
76 DRAW_BEGIN_RANGE = DRAW,
77 DRAW_END_RANGE = DRAW_INDEXED_INDIRECT,
78 NUM_DRAW_TYPES = (DRAW_END_RANGE - DRAW_BEGIN_RANGE + 1),
79} DRAW_TYPE;
Tobin Ehlis83562882014-11-27 15:43:39 -070080
Tobin Ehlis7265e832015-01-19 08:42:29 -070081typedef struct _SHADER_DS_MAPPING {
82 uint32_t slotCount;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060083 VkDescriptorSetLayoutCreateInfo* pShaderMappingSlot;
Tobin Ehlis7265e832015-01-19 08:42:29 -070084} SHADER_DS_MAPPING;
85
Tobin Ehlis04178d72015-01-22 10:45:21 -070086typedef struct _GENERIC_HEADER {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060087 VkStructureType sType;
Tobin Ehlis7265e832015-01-19 08:42:29 -070088 const void* pNext;
Tobin Ehlis04178d72015-01-22 10:45:21 -070089} GENERIC_HEADER;
Tobin Ehlis7265e832015-01-19 08:42:29 -070090
91typedef struct _PIPELINE_NODE {
Tony Barbourdd6e32e2015-07-10 15:29:03 -060092 VkPipeline pipeline;
93 VkGraphicsPipelineCreateInfo graphicsPipelineCI;
94 VkPipelineVertexInputStateCreateInfo vertexInputCI;
95 VkPipelineInputAssemblyStateCreateInfo iaStateCI;
96 VkPipelineTessellationStateCreateInfo tessStateCI;
97 VkPipelineViewportStateCreateInfo vpStateCI;
98 VkPipelineRasterStateCreateInfo rsStateCI;
99 VkPipelineMultisampleStateCreateInfo msStateCI;
100 VkPipelineColorBlendStateCreateInfo cbStateCI;
101 VkPipelineDepthStencilStateCreateInfo dsStateCI;
102 VkPipelineShaderStageCreateInfo vsCI;
103 VkPipelineShaderStageCreateInfo tcsCI;
104 VkPipelineShaderStageCreateInfo tesCI;
105 VkPipelineShaderStageCreateInfo gsCI;
106 VkPipelineShaderStageCreateInfo fsCI;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600107 // Compute shader is include in VkComputePipelineCreateInfo
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600108 VkComputePipelineCreateInfo computePipelineCI;
Tobin Ehlisa85167d2015-06-18 11:02:59 -0600109 // Flag of which shader stages are active for this pipeline
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600110 uint32_t active_shaders;
111 VkGraphicsPipelineCreateInfo* pCreateTree; // Ptr to shadow of data in create tree
Tobin Ehlis7265e832015-01-19 08:42:29 -0700112 // Vtx input info (if any)
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600113 uint32_t vtxBindingCount; // number of bindings
114 VkVertexInputBindingDescription* pVertexBindingDescriptions;
115 uint32_t vtxAttributeCount; // number of attributes
116 VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
117 uint32_t attachmentCount; // number of CB attachments
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600118 VkPipelineColorBlendAttachmentState* pAttachments;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700119} PIPELINE_NODE;
120
121typedef struct _SAMPLER_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600122 VkSampler sampler;
123 VkSamplerCreateInfo createInfo;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700124} SAMPLER_NODE;
125
Tobin Ehlis04178d72015-01-22 10:45:21 -0700126typedef struct _BUFFER_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600127 VkBufferView buffer;
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600128 VkBufferViewCreateInfo createInfo;
Tobin Ehlisce132d82015-06-19 15:07:05 -0600129 VkDescriptorInfo descriptorInfo;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700130} BUFFER_NODE;
131
Tobin Ehlis7265e832015-01-19 08:42:29 -0700132// Descriptor Data structures
Tobin Ehlis04178d72015-01-22 10:45:21 -0700133// Layout Node has the core layout data
Tobin Ehlis7265e832015-01-19 08:42:29 -0700134typedef struct _LAYOUT_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600135 VkDescriptorSetLayout layout;
136 VkDescriptorType* pTypes; // Dynamic array that will be created to verify descriptor types
137 VkDescriptorSetLayoutCreateInfo createInfo;
138 uint32_t startIndex; // 1st index of this layout
139 uint32_t endIndex; // last index of this layout
Tobin Ehlis7265e832015-01-19 08:42:29 -0700140} LAYOUT_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700141typedef struct _SET_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600142 VkDescriptorSet set;
143 VkDescriptorPool pool;
144 VkDescriptorSetUsage setUsage;
Tobin Ehlis481ec712015-02-19 09:55:18 -0700145 // Head of LL of all Update structs for this set
Tobin Ehlisce132d82015-06-19 15:07:05 -0600146 GENERIC_HEADER* pUpdateStructs;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700147 // Total num of descriptors in this set (count of its layout plus all prior layouts)
Tobin Ehlisce132d82015-06-19 15:07:05 -0600148 uint32_t descriptorCount;
149 GENERIC_HEADER** ppDescriptors; // Array where each index points to update node for its slot
150 LAYOUT_NODE* pLayout; // Layout for this set
151 struct _SET_NODE* pNext;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700152} SET_NODE;
153
Tobin Ehlis793ad302015-04-03 12:01:11 -0600154typedef struct _POOL_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600155 VkDescriptorPool pool;
156 VkDescriptorPoolUsage poolUsage;
157 uint32_t maxSets;
158 VkDescriptorPoolCreateInfo createInfo;
159 SET_NODE* pSets; // Head of LL of sets for this Pool
Tobin Ehlis793ad302015-04-03 12:01:11 -0600160} POOL_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700161
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700162// Cmd Buffer Tracking
163typedef enum _CMD_TYPE
164{
165 CMD_BINDPIPELINE,
166 CMD_BINDPIPELINEDELTA,
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600167 CMD_BINDDYNAMICVIEWPORTSTATE,
Cody Northrop12365112015-08-17 11:10:49 -0600168 CMD_BINDDYNAMICRASTERLINESTATE,
169 CMD_BINDDYNAMICRASTERDEPTHBIASSTATE,
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600170 CMD_BINDDYNAMICCOLORBLENDSTATE,
171 CMD_BINDDYNAMICDEPTHSTENCILSTATE,
Tobin Ehlis793ad302015-04-03 12:01:11 -0600172 CMD_BINDDESCRIPTORSETS,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700173 CMD_BINDINDEXBUFFER,
174 CMD_BINDVERTEXBUFFER,
175 CMD_DRAW,
176 CMD_DRAWINDEXED,
177 CMD_DRAWINDIRECT,
178 CMD_DRAWINDEXEDINDIRECT,
179 CMD_DISPATCH,
180 CMD_DISPATCHINDIRECT,
181 CMD_COPYBUFFER,
182 CMD_COPYIMAGE,
Tobin Ehlis793ad302015-04-03 12:01:11 -0600183 CMD_BLITIMAGE,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700184 CMD_COPYBUFFERTOIMAGE,
185 CMD_COPYIMAGETOBUFFER,
186 CMD_CLONEIMAGEDATA,
187 CMD_UPDATEBUFFER,
188 CMD_FILLBUFFER,
189 CMD_CLEARCOLORIMAGE,
Tobin Ehlis53eddda2015-07-01 16:46:13 -0600190 CMD_CLEARCOLORATTACHMENT,
191 CMD_CLEARDEPTHSTENCILIMAGE,
192 CMD_CLEARDEPTHSTENCILATTACHMENT,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700193 CMD_RESOLVEIMAGE,
194 CMD_SETEVENT,
195 CMD_RESETEVENT,
196 CMD_WAITEVENTS,
197 CMD_PIPELINEBARRIER,
198 CMD_BEGINQUERY,
199 CMD_ENDQUERY,
200 CMD_RESETQUERYPOOL,
201 CMD_WRITETIMESTAMP,
202 CMD_INITATOMICCOUNTERS,
203 CMD_LOADATOMICCOUNTERS,
204 CMD_SAVEATOMICCOUNTERS,
205 CMD_BEGINRENDERPASS,
Chia-I Wu08accc62015-07-07 11:50:03 +0800206 CMD_NEXTSUBPASS,
Tobin Ehlis67449422015-03-02 10:16:40 -0700207 CMD_ENDRENDERPASS,
Chia-I Wu0b50a1c2015-06-26 15:34:39 +0800208 CMD_EXECUTECOMMANDS,
Tobin Ehlis67449422015-03-02 10:16:40 -0700209 CMD_DBGMARKERBEGIN,
210 CMD_DBGMARKEREND,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700211} CMD_TYPE;
212// Data structure for holding sequence of cmds in cmd buffer
213typedef struct _CMD_NODE {
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700214 CMD_TYPE type;
215 uint64_t cmdNumber;
216} CMD_NODE;
217
218typedef enum _CB_STATE
219{
220 CB_NEW, // Newly created CB w/o any cmds
221 CB_UPDATE_ACTIVE, // BeginCB has been called on this CB
222 CB_UPDATE_COMPLETE // EndCB has been called on this CB
223} CB_STATE;
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600224// CB Status -- used to track status of various bindings on cmd buffer objects
225typedef VkFlags CBStatusFlags;
226typedef enum _CBStatusFlagBits
227{
228 CBSTATUS_NONE = 0x00000000, // No status is set
229 CBSTATUS_VIEWPORT_BOUND = 0x00000001, // Viewport state object has been bound
Cody Northrop12365112015-08-17 11:10:49 -0600230 CBSTATUS_RASTER_LINE_BOUND = 0x00000002, // Raster state object has been bound
231 CBSTATUS_RASTER_DEPTH_BIAS_BOUND = 0x00000004, // Raster state object has been bound
232 CBSTATUS_COLOR_BLEND_WRITE_ENABLE = 0x00000008, // PSO w/ CB Enable set has been bound
233 CBSTATUS_COLOR_BLEND_BOUND = 0x00000010, // CB state object has been bound
234 CBSTATUS_DEPTH_STENCIL_WRITE_ENABLE = 0x00000020, // PSO w/ DS Enable set has been bound
235 CBSTATUS_DEPTH_STENCIL_BOUND = 0x00000040, // DS state object has been bound
236 CBSTATUS_INDEX_BUFFER_BOUND = 0x00000080, // Index buffer has been bound
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600237} CBStatusFlagBits;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600238
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600239// Cmd Buffer Wrapper Struct
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700240typedef struct _GLOBAL_CB_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600241 VkCmdBuffer cmdBuffer;
Tobin Ehlis59278bf2015-08-18 07:10:58 -0600242 VkCmdBufferCreateInfo createInfo;
243 VkCmdBufferBeginInfo beginInfo;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600244 VkFence fence; // fence tracking this cmd buffer
245 uint64_t numCmds; // number of cmds in this CB
246 uint64_t drawCount[NUM_DRAW_TYPES]; // Count of each type of draw in this CB
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600247 CB_STATE state; // Track cmd buffer update state
Tobin Ehlis59278bf2015-08-18 07:10:58 -0600248 uint64_t submitCount; // Number of times CB has been submitted
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600249 CBStatusFlags status; // Track status of various bindings on cmd buffer
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600250 vector<CMD_NODE*> pCmds;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700251 // Currently storing "lastBound" objects on per-CB basis
252 // long-term may want to create caches of "lastBound" states and could have
253 // each individual CMD_NODE referencing its own "lastBound" state
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600254 VkPipeline lastBoundPipeline;
255 uint32_t lastVtxBinding;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600256 uint64_t lastBoundDynamicState[VK_NUM_STATE_BIND_POINT];
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600257 VkDescriptorSet lastBoundDescriptorSet;
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600258 VkPipelineLayout lastBoundPipelineLayout;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600259 VkRenderPass activeRenderPass;
Chia-I Wu08accc62015-07-07 11:50:03 +0800260 uint32_t activeSubpass;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600261 VkFramebuffer framebuffer;
Mark Lobodzinskid9139a62015-08-04 16:24:20 -0600262 VkCmdBufferLevel level;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600263 vector<VkDescriptorSet> boundDescriptorSets;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700264} GLOBAL_CB_NODE;