blob: 73dfc1434903337ea55d4f49bda74388c719fee4 [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 */
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060024#include "vkLayer.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060025#include <vector>
26
27using namespace std;
28
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070029// Draw State ERROR codes
30typedef enum _DRAW_STATE_ERROR
31{
Tobin Ehlis7265e832015-01-19 08:42:29 -070032 DRAWSTATE_NONE, // Used for INFO & other non-error messages
Tobin Ehlis04178d72015-01-22 10:45:21 -070033 DRAWSTATE_INTERNAL_ERROR, // Error with DrawState internal data structures
Tobin Ehlis7265e832015-01-19 08:42:29 -070034 DRAWSTATE_NO_PIPELINE_BOUND, // Unable to identify a bound pipeline
Tobin Ehlis793ad302015-04-03 12:01:11 -060035 DRAWSTATE_INVALID_POOL, // Invalid DS pool
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070036 DRAWSTATE_INVALID_SET, // Invalid DS
Tobin Ehlis04178d72015-01-22 10:45:21 -070037 DRAWSTATE_INVALID_LAYOUT, // Invalid DS layout
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070038 DRAWSTATE_INVALID_PIPELINE, // Invalid Pipeline referenced
Tobin Ehlisd01f7d62015-02-13 10:26:14 -070039 DRAWSTATE_INVALID_CMD_BUFFER, // Invalid CmdBuffer referenced
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060040 DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, // binding in vkCmdBindVertexData() too large for PSO's pVertexBindingDescriptions array
Tobin Ehlis7265e832015-01-19 08:42:29 -070041 DRAWSTATE_INVALID_DYNAMIC_STATE_OBJECT, // Invalid dyn state object
42 DRAWSTATE_MISSING_DOT_PROGRAM, // No "dot" program in order to generate png image
Tobin Ehlis04178d72015-01-22 10:45:21 -070043 DRAWSTATE_OUT_OF_MEMORY, // malloc failed
44 DRAWSTATE_DESCRIPTOR_TYPE_MISMATCH, // Type in layout vs. update are not the same
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070045 DRAWSTATE_DESCRIPTOR_UPDATE_OUT_OF_BOUNDS, // Descriptors set for update out of bounds for corresponding layout section
Tobin Ehlis297b9852015-02-23 16:09:58 -070046 DRAWSTATE_INVALID_UPDATE_INDEX, // Index of requested update is invalid for specified descriptors set
Tobin Ehliseba312c2015-04-01 08:40:34 -060047 DRAWSTATE_INVALID_UPDATE_STRUCT, // Struct in DS Update tree is of invalid type
Tobin Ehlisa9f3d762015-05-22 12:38:16 -060048 DRAWSTATE_NUM_SAMPLES_MISMATCH, // Number of samples in bound PSO does not match number in FB of current RenderPass
49 DRAWSTATE_NO_END_CMD_BUFFER, // Must call vkEndCommandBuffer() before QueueSubmit on that cmdBuffer
Tobin Ehlise382c5a2015-06-10 12:57:07 -060050 DRAWSTATE_VIEWPORT_NOT_BOUND, // Draw submitted with no viewport state object bound
51 DRAWSTATE_RASTER_NOT_BOUND, // Draw submitted with no raster state object bound
52 DRAWSTATE_COLOR_BLEND_NOT_BOUND, // Draw submitted with no color blend state object bound when color write enabled
53 DRAWSTATE_DEPTH_STENCIL_NOT_BOUND, // Draw submitted with no depth-stencil state object bound when depth write enabled
Jon Ashburne68a9ff2015-05-25 14:11:37 -060054 DRAWSTATE_INVALID_EXTENSION
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070055} DRAW_STATE_ERROR;
Tobin Ehlis5742e772014-11-20 09:49:17 -070056
57typedef enum _DRAW_TYPE
58{
59 DRAW = 0,
60 DRAW_INDEXED = 1,
61 DRAW_INDIRECT = 2,
62 DRAW_INDEXED_INDIRECT = 3,
63 DRAW_BEGIN_RANGE = DRAW,
64 DRAW_END_RANGE = DRAW_INDEXED_INDIRECT,
65 NUM_DRAW_TYPES = (DRAW_END_RANGE - DRAW_BEGIN_RANGE + 1),
66} DRAW_TYPE;
Tobin Ehlis83562882014-11-27 15:43:39 -070067
Tobin Ehlis7265e832015-01-19 08:42:29 -070068typedef struct _SHADER_DS_MAPPING {
69 uint32_t slotCount;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060070 VkDescriptorSetLayoutCreateInfo* pShaderMappingSlot;
Tobin Ehlis7265e832015-01-19 08:42:29 -070071} SHADER_DS_MAPPING;
72
Tobin Ehlis04178d72015-01-22 10:45:21 -070073typedef struct _GENERIC_HEADER {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060074 VkStructureType sType;
Tobin Ehlis7265e832015-01-19 08:42:29 -070075 const void* pNext;
Tobin Ehlis04178d72015-01-22 10:45:21 -070076} GENERIC_HEADER;
Tobin Ehlis7265e832015-01-19 08:42:29 -070077
78typedef struct _PIPELINE_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060079 VkPipeline pipeline;
Tobin Ehlisf313c8b2015-04-01 11:59:08 -060080
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060081 VkGraphicsPipelineCreateInfo graphicsPipelineCI;
82 VkPipelineVertexInputCreateInfo vertexInputCI;
83 VkPipelineIaStateCreateInfo iaStateCI;
84 VkPipelineTessStateCreateInfo tessStateCI;
85 VkPipelineVpStateCreateInfo vpStateCI;
86 VkPipelineRsStateCreateInfo rsStateCI;
87 VkPipelineMsStateCreateInfo msStateCI;
88 VkPipelineCbStateCreateInfo cbStateCI;
89 VkPipelineDsStateCreateInfo dsStateCI;
90 VkPipelineShaderStageCreateInfo vsCI;
91 VkPipelineShaderStageCreateInfo tcsCI;
92 VkPipelineShaderStageCreateInfo tesCI;
93 VkPipelineShaderStageCreateInfo gsCI;
94 VkPipelineShaderStageCreateInfo fsCI;
95 // Compute shader is include in VkComputePipelineCreateInfo
96 VkComputePipelineCreateInfo computePipelineCI;
Tobin Ehlisf313c8b2015-04-01 11:59:08 -060097
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -060098 VkGraphicsPipelineCreateInfo* pCreateTree; // Ptr to shadow of data in create tree
Tobin Ehlis7265e832015-01-19 08:42:29 -070099 // Vtx input info (if any)
100 uint32_t vtxBindingCount; // number of bindings
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600101 VkVertexInputBindingDescription* pVertexBindingDescriptions;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700102 uint32_t vtxAttributeCount; // number of attributes
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600103 VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
Tobin Ehlisa3a693e2015-02-10 15:35:23 -0700104 uint32_t attachmentCount; // number of CB attachments
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600105 VkPipelineCbAttachmentState* pAttachments;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700106} PIPELINE_NODE;
107
108typedef struct _SAMPLER_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600109 VkSampler sampler;
110 VkSamplerCreateInfo createInfo;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700111} SAMPLER_NODE;
112
Tobin Ehlis04178d72015-01-22 10:45:21 -0700113typedef struct _IMAGE_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600114 VkImageView image;
115 VkImageViewCreateInfo createInfo;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800116 VkDescriptorInfo descriptorInfo;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700117} IMAGE_NODE;
118
119typedef struct _BUFFER_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600120 VkBufferView buffer;
Courtney Goeltzenleuchter95487bc2015-04-14 18:48:46 -0600121 VkBufferViewCreateInfo createInfo;
Chia-I Wu9d00ed72015-05-25 16:27:55 +0800122 VkDescriptorInfo descriptorInfo;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700123} BUFFER_NODE;
124
Tobin Ehlis7265e832015-01-19 08:42:29 -0700125typedef struct _DYNAMIC_STATE_NODE {
Courtney Goeltzenleuchterf579fa62015-06-10 17:39:03 -0600126 VkObjectType objType;
127 VkDynamicStateObject stateObj;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600128 GENERIC_HEADER* pCreateInfo;
129 union {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600130 VkDynamicVpStateCreateInfo vpci;
131 VkDynamicRsStateCreateInfo rsci;
132 VkDynamicCbStateCreateInfo cbci;
133 VkDynamicDsStateCreateInfo dsci;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600134 } create_info;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700135} DYNAMIC_STATE_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700136// Descriptor Data structures
Tobin Ehlis04178d72015-01-22 10:45:21 -0700137// Layout Node has the core layout data
Tobin Ehlis7265e832015-01-19 08:42:29 -0700138typedef struct _LAYOUT_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600139 VkDescriptorSetLayout layout;
140 VkDescriptorType* pTypes; // Dynamic array that will be created to verify descriptor types
141 VkDescriptorSetLayoutCreateInfo createInfo;
Tobin Ehlisa3a693e2015-02-10 15:35:23 -0700142 uint32_t startIndex; // 1st index of this layout
143 uint32_t endIndex; // last index of this layout
Tobin Ehlis7265e832015-01-19 08:42:29 -0700144} LAYOUT_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700145typedef struct _SET_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600146 VkDescriptorSet set;
147 VkDescriptorPool pool;
148 VkDescriptorSetUsage setUsage;
Tobin Ehlis481ec712015-02-19 09:55:18 -0700149 // Head of LL of all Update structs for this set
Tobin Ehlis04178d72015-01-22 10:45:21 -0700150 GENERIC_HEADER* pUpdateStructs;
151 // Total num of descriptors in this set (count of its layout plus all prior layouts)
152 uint32_t descriptorCount;
Tobin Ehlis481ec712015-02-19 09:55:18 -0700153 GENERIC_HEADER** ppDescriptors; // Array where each index points to update node for its slot
Tobin Ehlis793ad302015-04-03 12:01:11 -0600154 LAYOUT_NODE* pLayout; // Layout for this set
Tobin Ehlis7265e832015-01-19 08:42:29 -0700155 struct _SET_NODE* pNext;
156} SET_NODE;
157
Tobin Ehlis793ad302015-04-03 12:01:11 -0600158typedef struct _POOL_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600159 VkDescriptorPool pool;
160 VkDescriptorPoolUsage poolUsage;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700161 uint32_t maxSets;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600162 VkDescriptorPoolCreateInfo createInfo;
Tobin Ehlis793ad302015-04-03 12:01:11 -0600163 SET_NODE* pSets; // Head of LL of sets for this Pool
164} POOL_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700165
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700166// Cmd Buffer Tracking
167typedef enum _CMD_TYPE
168{
169 CMD_BINDPIPELINE,
170 CMD_BINDPIPELINEDELTA,
171 CMD_BINDDYNAMICSTATEOBJECT,
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,
190 CMD_CLEARCOLORIMAGERAW,
191 CMD_CLEARDEPTHSTENCIL,
192 CMD_RESOLVEIMAGE,
193 CMD_SETEVENT,
194 CMD_RESETEVENT,
195 CMD_WAITEVENTS,
196 CMD_PIPELINEBARRIER,
197 CMD_BEGINQUERY,
198 CMD_ENDQUERY,
199 CMD_RESETQUERYPOOL,
200 CMD_WRITETIMESTAMP,
201 CMD_INITATOMICCOUNTERS,
202 CMD_LOADATOMICCOUNTERS,
203 CMD_SAVEATOMICCOUNTERS,
204 CMD_BEGINRENDERPASS,
Tobin Ehlis67449422015-03-02 10:16:40 -0700205 CMD_ENDRENDERPASS,
206 CMD_DBGMARKERBEGIN,
207 CMD_DBGMARKEREND,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700208} CMD_TYPE;
209// Data structure for holding sequence of cmds in cmd buffer
210typedef struct _CMD_NODE {
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700211 CMD_TYPE type;
212 uint64_t cmdNumber;
213} CMD_NODE;
214
215typedef enum _CB_STATE
216{
217 CB_NEW, // Newly created CB w/o any cmds
218 CB_UPDATE_ACTIVE, // BeginCB has been called on this CB
219 CB_UPDATE_COMPLETE // EndCB has been called on this CB
220} CB_STATE;
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600221// CB Status -- used to track status of various bindings on cmd buffer objects
222typedef VkFlags CBStatusFlags;
223typedef enum _CBStatusFlagBits
224{
225 CBSTATUS_NONE = 0x00000000, // No status is set
226 CBSTATUS_VIEWPORT_BOUND = 0x00000001, // Viewport state object has been bound
227 CBSTATUS_RASTER_BOUND = 0x00000002, // Raster state object has been bound
228 CBSTATUS_COLOR_BLEND_WRITE_ENABLE = 0x00000004, // PSO w/ CB Enable set has been bound
229 CBSTATUS_COLOR_BLEND_BOUND = 0x00000008, // CB state object has been bound
230 CBSTATUS_DEPTH_STENCIL_WRITE_ENABLE = 0x00000010, // PSO w/ DS Enable set has been bound
231 CBSTATUS_DEPTH_STENCIL_BOUND = 0x00000020, // DS state object has been bound
232} CBStatusFlagBits;
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600233// Cmd Buffer Wrapper Struct
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700234typedef struct _GLOBAL_CB_NODE {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600235 VkCmdBuffer cmdBuffer;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600236 uint32_t queueNodeIndex;
237 VkFlags flags;
238 VkFence fence; // fence tracking this cmd buffer
239 uint64_t numCmds; // number of cmds in this CB
240 uint64_t drawCount[NUM_DRAW_TYPES]; // Count of each type of draw in this CB
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600241 CB_STATE state; // Track cmd buffer update state
242 CBStatusFlags status; // Track status of various bindings on cmd buffer
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600243 vector<CMD_NODE*> pCmds;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700244 // Currently storing "lastBound" objects on per-CB basis
245 // long-term may want to create caches of "lastBound" states and could have
246 // each individual CMD_NODE referencing its own "lastBound" state
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600247 VkPipeline lastBoundPipeline;
248 uint32_t lastVtxBinding;
249 DYNAMIC_STATE_NODE* lastBoundDynamicState[VK_NUM_STATE_BIND_POINT];
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600250 VkDescriptorSet lastBoundDescriptorSet;
251 VkRenderPass activeRenderPass;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600252 VkFramebuffer framebuffer;
253 vector<VkDescriptorSet> boundDescriptorSets;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700254} GLOBAL_CB_NODE;
255
Tobin Ehlis83562882014-11-27 15:43:39 -0700256//prototypes for extension functions
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600257void drawStateDumpDotFile(char* outFileName);
258void drawStateDumpPngFile(char* outFileName);
Jeremy Hayes2c98e532015-02-26 15:59:19 -0700259void drawStateDumpCommandBufferDotFile(char* outFileName);
Tobin Ehlisf27eba72014-12-16 17:34:50 -0700260// Func ptr typedefs
Mark Lobodzinski17caf572015-01-29 08:55:56 -0600261typedef void (*DRAW_STATE_DUMP_DOT_FILE)(char*);
262typedef void (*DRAW_STATE_DUMP_PNG_FILE)(char*);
Jeremy Hayes2c98e532015-02-26 15:59:19 -0700263typedef void (*DRAW_STATE_DUMP_COMMAND_BUFFER_DOT_FILE)(char*);