blob: ce77bea615cb013291cd0b3be22193f11e7ce4ae [file] [log] [blame]
Tobin Ehlis246ba4d2014-11-18 16:38:08 -07001/*
Tobin Ehlis246ba4d2014-11-18 16:38:08 -07002 *
Courtney Goeltzenleuchterfcbe16f2015-10-29 13:50:34 -06003 * Copyright (C) 2015 Valve Corporation
Tobin Ehlis246ba4d2014-11-18 16:38:08 -07004 *
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.
Courtney Goeltzenleuchter05559522015-10-30 11:14:30 -060022 *
23 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
24 * Author: Tobin Ehlis <tobin@lunarg.com>
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070025 */
David Pinedo9316d3b2015-11-06 12:54:48 -070026#include "vulkan/vk_layer.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060027#include <vector>
Tobin Ehlisb212dfc2015-10-07 15:40:22 -060028#include <memory>
David Pinedoabd07722015-11-24 09:00:24 -070029#include "vulkan/vk_lunarg_debug_report.h"
Tobin Ehlis10ae8c12015-03-17 16:24:32 -060030
31using namespace std;
32
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070033// Draw State ERROR codes
34typedef enum _DRAW_STATE_ERROR
35{
Tobin Ehlis7265e832015-01-19 08:42:29 -070036 DRAWSTATE_NONE, // Used for INFO & other non-error messages
Tobin Ehlis04178d72015-01-22 10:45:21 -070037 DRAWSTATE_INTERNAL_ERROR, // Error with DrawState internal data structures
Tobin Ehlis7265e832015-01-19 08:42:29 -070038 DRAWSTATE_NO_PIPELINE_BOUND, // Unable to identify a bound pipeline
Tobin Ehlis793ad302015-04-03 12:01:11 -060039 DRAWSTATE_INVALID_POOL, // Invalid DS pool
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070040 DRAWSTATE_INVALID_SET, // Invalid DS
Tobin Ehlis04178d72015-01-22 10:45:21 -070041 DRAWSTATE_INVALID_LAYOUT, // Invalid DS layout
Michael Lentineabc5e922015-10-12 11:30:14 -050042 DRAWSTATE_INVALID_IMAGE_LAYOUT, // Invalid Image layout
Tobin Ehlis75283bf2015-06-18 15:59:33 -060043 DRAWSTATE_INVALID_PIPELINE, // Invalid Pipeline handle referenced
Tobin Ehlis559c6382015-11-05 09:52:49 -070044 DRAWSTATE_INVALID_PIPELINE_LAYOUT, // Invalid PipelineLayout
Tobin Ehlis75283bf2015-06-18 15:59:33 -060045 DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, // Attempt to create a pipeline with invalid state
Michael Lentine48930b82015-10-15 17:07:00 -050046 DRAWSTATE_INVALID_COMMAND_BUFFER, // Invalid CommandBuffer referenced
47 DRAWSTATE_INVALID_BARRIER, // Invalid Barrier
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060048 DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, // binding in vkCmdBindVertexData() too large for PSO's pVertexBindingDescriptions array
Tobin Ehlisc4c23182015-09-17 12:24:13 -060049 DRAWSTATE_VTX_INDEX_ALIGNMENT_ERROR, // binding offset in vkCmdBindIndexBuffer() out of alignment based on indexType
Tobin Ehlis12d4c6a2015-08-31 12:42:38 -060050 //DRAWSTATE_MISSING_DOT_PROGRAM, // No "dot" program in order to generate png image
Tobin Ehlis04178d72015-01-22 10:45:21 -070051 DRAWSTATE_OUT_OF_MEMORY, // malloc failed
52 DRAWSTATE_DESCRIPTOR_TYPE_MISMATCH, // Type in layout vs. update are not the same
Tobin Ehlisa1f9b642015-10-27 12:25:35 -060053 DRAWSTATE_DESCRIPTOR_STAGEFLAGS_MISMATCH, // StageFlags in layout are not the same throughout a single VkWriteDescriptorSet update
Tobin Ehlisa3a693e2015-02-10 15:35:23 -070054 DRAWSTATE_DESCRIPTOR_UPDATE_OUT_OF_BOUNDS, // Descriptors set for update out of bounds for corresponding layout section
Tobin Ehlisf93f1e32015-10-20 16:16:04 -060055 DRAWSTATE_DESCRIPTOR_POOL_EMPTY, // Attempt to allocate descriptor from a pool with no more descriptors of that type available
Courtney Goeltzenleuchterbee18a92015-10-23 14:21:05 -060056 DRAWSTATE_CANT_FREE_FROM_NON_FREE_POOL, // Invalid to call vkFreeDescriptorSets on Sets allocated from a NON_FREE Pool
Tobin Ehlis297b9852015-02-23 16:09:58 -070057 DRAWSTATE_INVALID_UPDATE_INDEX, // Index of requested update is invalid for specified descriptors set
Tobin Ehliseba312c2015-04-01 08:40:34 -060058 DRAWSTATE_INVALID_UPDATE_STRUCT, // Struct in DS Update tree is of invalid type
Tobin Ehlisa9f3d762015-05-22 12:38:16 -060059 DRAWSTATE_NUM_SAMPLES_MISMATCH, // Number of samples in bound PSO does not match number in FB of current RenderPass
Chia-I Wu3432a0c2015-10-27 18:04:07 +080060 DRAWSTATE_NO_END_COMMAND_BUFFER, // Must call vkEndCommandBuffer() before QueueSubmit on that commandBuffer
61 DRAWSTATE_NO_BEGIN_COMMAND_BUFFER, // Binding cmds or calling End on CB that never had vkBeginCommandBuffer() called on it
62 DRAWSTATE_COMMAND_BUFFER_SINGLE_SUBMIT_VIOLATION, // Cmd Buffer created with VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT flag is submitted multiple times
63 DRAWSTATE_INVALID_SECONDARY_COMMAND_BUFFER, // vkCmdExecuteCommands() called with a primary commandBuffer in pCommandBuffers array
Tobin Ehlis963a4042015-09-29 08:18:34 -060064 DRAWSTATE_VIEWPORT_NOT_BOUND, // Draw submitted with no viewport state bound
65 DRAWSTATE_SCISSOR_NOT_BOUND, // Draw submitted with no scissor state bound
66 DRAWSTATE_LINE_WIDTH_NOT_BOUND, // Draw submitted with no line width state bound
67 DRAWSTATE_DEPTH_BIAS_NOT_BOUND, // Draw submitted with no depth bias state bound
68 DRAWSTATE_BLEND_NOT_BOUND, // Draw submitted with no blend state bound when color write enabled
69 DRAWSTATE_DEPTH_BOUNDS_NOT_BOUND, // Draw submitted with no depth bounds state bound when depth enabled
70 DRAWSTATE_STENCIL_NOT_BOUND, // Draw submitted with no stencil state bound when stencil enabled
71 DRAWSTATE_INDEX_BUFFER_NOT_BOUND, // Draw submitted with no depth-stencil state bound when depth write enabled
Tobin Ehlis559c6382015-11-05 09:52:49 -070072 DRAWSTATE_PIPELINE_LAYOUTS_INCOMPATIBLE, // Draw submitted PSO Pipeline layout that's not compatible with layout from BindDescriptorSets
Tobin Ehlis259730a2015-06-23 16:13:03 -060073 DRAWSTATE_INVALID_RENDERPASS, // Use of a NULL or otherwise invalid RenderPass object
Tobin Ehlisd1fe4ec2015-06-23 11:22:55 -060074 DRAWSTATE_INVALID_RENDERPASS_CMD, // Invalid cmd submitted while a RenderPass is active
75 DRAWSTATE_NO_ACTIVE_RENDERPASS, // Rendering cmd submitted without an active RenderPass
Tobin Ehlis502480b2015-06-24 15:53:07 -060076 DRAWSTATE_DESCRIPTOR_SET_NOT_UPDATED, // DescriptorSet bound but it was never updated. This is a warning code.
Tobin Ehlisda2f0d02015-11-04 12:28:28 -070077 DRAWSTATE_INVALID_DYNAMIC_OFFSET_COUNT, // DescriptorSets bound with different number of dynamic descriptors that were included in dynamicOffsetCount
Chia-I Wu3432a0c2015-10-27 18:04:07 +080078 DRAWSTATE_CLEAR_CMD_BEFORE_DRAW, // Clear cmd issued before any Draw in CommandBuffer, should use RenderPass Ops instead
Mark Lobodzinskid9139a62015-08-04 16:24:20 -060079 DRAWSTATE_BEGIN_CB_INVALID_STATE, // Primary/Secondary CB created with mismatched FB/RP information
Tobin Ehlise68360f2015-10-01 11:15:13 -060080 DRAWSTATE_VIEWPORT_SCISSOR_MISMATCH, // Count for viewports and scissors mismatch and/or state doesn't match count
Mark Lobodzinskif53c6e52015-10-16 13:32:24 -060081 DRAWSTATE_INVALID_IMAGE_ASPECT, // Image aspect is invalid for the current operation
Mark Lobodzinski13ec6b02015-10-16 09:17:27 -060082 DRAWSTATE_MISSING_ATTACHMENT_REFERENCE, // Attachment reference must be present in active subpass
Tobin Ehlis75283bf2015-06-18 15:59:33 -060083 DRAWSTATE_INVALID_EXTENSION,
Tobin Ehlisa1c28562015-10-23 16:00:08 -060084 DRAWSTATE_SAMPLER_DESCRIPTOR_ERROR, // A Descriptor of *_SAMPLER type is being updated with an invalid or bad Sampler
Tobin Ehlisa1f9b642015-10-27 12:25:35 -060085 DRAWSTATE_INCONSISTENT_IMMUTABLE_SAMPLER_UPDATE, // Descriptors of *COMBINED_IMAGE_SAMPLER type are being updated where some, but not all, of the updates use immutable samplers
Tobin Ehlisa1c28562015-10-23 16:00:08 -060086 DRAWSTATE_IMAGEVIEW_DESCRIPTOR_ERROR, // A Descriptor of *_IMAGE or *_ATTACHMENT type is being updated with an invalid or bad ImageView
87 DRAWSTATE_BUFFERVIEW_DESCRIPTOR_ERROR, // A Descriptor of *_TEXEL_BUFFER type is being updated with an invalid or bad BufferView
88 DRAWSTATE_BUFFERINFO_DESCRIPTOR_ERROR, // A Descriptor of *_[UNIFORM|STORAGE]_BUFFER_[DYNAMIC] type is being updated with an invalid or bad BufferView
Tobin Ehlis246ba4d2014-11-18 16:38:08 -070089} DRAW_STATE_ERROR;
Tobin Ehlis5742e772014-11-20 09:49:17 -070090
91typedef enum _DRAW_TYPE
92{
93 DRAW = 0,
94 DRAW_INDEXED = 1,
95 DRAW_INDIRECT = 2,
96 DRAW_INDEXED_INDIRECT = 3,
97 DRAW_BEGIN_RANGE = DRAW,
98 DRAW_END_RANGE = DRAW_INDEXED_INDIRECT,
99 NUM_DRAW_TYPES = (DRAW_END_RANGE - DRAW_BEGIN_RANGE + 1),
100} DRAW_TYPE;
Tobin Ehlis83562882014-11-27 15:43:39 -0700101
Tobin Ehlis7265e832015-01-19 08:42:29 -0700102typedef struct _SHADER_DS_MAPPING {
103 uint32_t slotCount;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600104 VkDescriptorSetLayoutCreateInfo* pShaderMappingSlot;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700105} SHADER_DS_MAPPING;
106
Tobin Ehlis04178d72015-01-22 10:45:21 -0700107typedef struct _GENERIC_HEADER {
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600108 VkStructureType sType;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700109 const void* pNext;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700110} GENERIC_HEADER;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700111
112typedef struct _PIPELINE_NODE {
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600113 VkPipeline pipeline;
114 VkGraphicsPipelineCreateInfo graphicsPipelineCI;
115 VkPipelineVertexInputStateCreateInfo vertexInputCI;
116 VkPipelineInputAssemblyStateCreateInfo iaStateCI;
117 VkPipelineTessellationStateCreateInfo tessStateCI;
118 VkPipelineViewportStateCreateInfo vpStateCI;
Tobin Ehlis559c6382015-11-05 09:52:49 -0700119 VkPipelineRasterizationStateCreateInfo rsStateCI;
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600120 VkPipelineMultisampleStateCreateInfo msStateCI;
121 VkPipelineColorBlendStateCreateInfo cbStateCI;
122 VkPipelineDepthStencilStateCreateInfo dsStateCI;
Tobin Ehlis963a4042015-09-29 08:18:34 -0600123 VkPipelineDynamicStateCreateInfo dynStateCI;
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600124 VkPipelineShaderStageCreateInfo vsCI;
125 VkPipelineShaderStageCreateInfo tcsCI;
126 VkPipelineShaderStageCreateInfo tesCI;
127 VkPipelineShaderStageCreateInfo gsCI;
128 VkPipelineShaderStageCreateInfo fsCI;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600129 // Compute shader is include in VkComputePipelineCreateInfo
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600130 VkComputePipelineCreateInfo computePipelineCI;
Tobin Ehlisa85167d2015-06-18 11:02:59 -0600131 // Flag of which shader stages are active for this pipeline
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600132 uint32_t active_shaders;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700133 // Vtx input info (if any)
Mark Lobodzinskid5732f32015-06-23 15:11:57 -0600134 uint32_t vtxBindingCount; // number of bindings
135 VkVertexInputBindingDescription* pVertexBindingDescriptions;
136 uint32_t vtxAttributeCount; // number of attributes
137 VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
138 uint32_t attachmentCount; // number of CB attachments
Tony Barbourdd6e32e2015-07-10 15:29:03 -0600139 VkPipelineColorBlendAttachmentState* pAttachments;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700140} PIPELINE_NODE;
141
142typedef struct _SAMPLER_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600143 VkSampler sampler;
144 VkSamplerCreateInfo createInfo;
Tobin Ehlisb212dfc2015-10-07 15:40:22 -0600145
146 _SAMPLER_NODE(const VkSampler* ps, const VkSamplerCreateInfo* pci) : sampler(*ps), createInfo(*pci) {};
Tobin Ehlis7265e832015-01-19 08:42:29 -0700147} SAMPLER_NODE;
Michael Lentineabc5e922015-10-12 11:30:14 -0500148
149typedef struct _IMAGE_NODE {
150 VkImageLayout layout;
151} IMAGE_NODE;
152
153typedef struct _IMAGE_CMD_BUF_NODE {
154 VkImageLayout layout;
155 VkImageLayout initialLayout;
156} IMAGE_CMD_BUF_NODE;
157
Michael Lentine48930b82015-10-15 17:07:00 -0500158typedef struct _RENDER_PASS_NODE {
159 VkRenderPassCreateInfo* createInfo;
160 std::vector<bool> hasSelfDependency;
161} RENDER_PASS_NODE;
162
Tobin Ehlis7265e832015-01-19 08:42:29 -0700163// Descriptor Data structures
Tobin Ehlis04178d72015-01-22 10:45:21 -0700164// Layout Node has the core layout data
Tobin Ehlis7265e832015-01-19 08:42:29 -0700165typedef struct _LAYOUT_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600166 VkDescriptorSetLayout layout;
Tobin Ehlisce132d82015-06-19 15:07:05 -0600167 VkDescriptorSetLayoutCreateInfo createInfo;
168 uint32_t startIndex; // 1st index of this layout
169 uint32_t endIndex; // last index of this layout
Tobin Ehlisda2f0d02015-11-04 12:28:28 -0700170 uint32_t dynamicDescriptorCount; // Total count of dynamic descriptors used by this layout
Tobin Ehlis644ff042015-10-20 10:11:55 -0600171 vector<VkDescriptorType> descriptorTypes; // Type per descriptor in this layout to verify correct updates
Tobin Ehlisa1f9b642015-10-27 12:25:35 -0600172 vector<VkShaderStageFlags> stageFlags; // stageFlags per descriptor in this layout to verify correct updates
Chia-I Wud46e6ae2015-10-31 00:31:16 +0800173 unordered_set<uint32_t> bindings;
Mark Lobodzinski2bf36f02015-11-17 12:42:57 -0700174 // Default constructor
175 _LAYOUT_NODE():layout{},createInfo{},startIndex(0),endIndex(0),dynamicDescriptorCount(0) {};
Tobin Ehlis7265e832015-01-19 08:42:29 -0700176} LAYOUT_NODE;
Mark Lobodzinski2bf36f02015-11-17 12:42:57 -0700177
Tobin Ehlis644ff042015-10-20 10:11:55 -0600178// Store layouts and pushconstants for PipelineLayout
179struct PIPELINE_LAYOUT_NODE {
180 vector<VkDescriptorSetLayout> descriptorSetLayouts;
181 vector<VkPushConstantRange> pushConstantRanges;
182};
183
Tobin Ehlis7265e832015-01-19 08:42:29 -0700184typedef struct _SET_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600185 VkDescriptorSet set;
186 VkDescriptorPool pool;
Tobin Ehlis481ec712015-02-19 09:55:18 -0700187 // Head of LL of all Update structs for this set
Tobin Ehlisce132d82015-06-19 15:07:05 -0600188 GENERIC_HEADER* pUpdateStructs;
Tobin Ehlis04178d72015-01-22 10:45:21 -0700189 // Total num of descriptors in this set (count of its layout plus all prior layouts)
Tobin Ehlisce132d82015-06-19 15:07:05 -0600190 uint32_t descriptorCount;
191 GENERIC_HEADER** ppDescriptors; // Array where each index points to update node for its slot
192 LAYOUT_NODE* pLayout; // Layout for this set
193 struct _SET_NODE* pNext;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700194} SET_NODE;
195
Mark Lobodzinski39298632015-11-18 08:38:27 -0700196typedef struct _DESCRIPTOR_POOL_NODE {
Tobin Ehlisce132d82015-06-19 15:07:05 -0600197 VkDescriptorPool pool;
Courtney Goeltzenleuchterbee18a92015-10-23 14:21:05 -0600198 uint32_t maxSets;
Tobin Ehlisce132d82015-06-19 15:07:05 -0600199 VkDescriptorPoolCreateInfo createInfo;
200 SET_NODE* pSets; // Head of LL of sets for this Pool
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600201 vector<uint32_t> maxDescriptorTypeCount; // max # of descriptors of each type in this pool
202 vector<uint32_t> availableDescriptorTypeCount; // available # of descriptors of each type in this pool
203
Mark Lobodzinski39298632015-11-18 08:38:27 -0700204 _DESCRIPTOR_POOL_NODE(const VkDescriptorPool pool, const VkDescriptorPoolCreateInfo* pCreateInfo) :
Courtney Goeltzenleuchterbee18a92015-10-23 14:21:05 -0600205 pool(pool), createInfo(*pCreateInfo), maxSets(pCreateInfo->maxSets), pSets(NULL),
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600206 maxDescriptorTypeCount(VK_DESCRIPTOR_TYPE_END_RANGE), availableDescriptorTypeCount(VK_DESCRIPTOR_TYPE_END_RANGE)
207 {
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800208 if (createInfo.poolSizeCount) { // Shadow type struct from ptr into local struct
209 size_t poolSizeCountSize = createInfo.poolSizeCount * sizeof(VkDescriptorPoolSize);
210 createInfo.pPoolSizes = new VkDescriptorPoolSize[poolSizeCountSize];
211 memcpy((void*)createInfo.pPoolSizes, pCreateInfo->pPoolSizes, poolSizeCountSize);
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600212 // Now set max counts for each descriptor type based on count of that type times maxSets
Courtney Goeltzenleuchter6ed5dc22015-11-03 15:41:43 -0700213 uint32_t i=0;
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800214 for (i=0; i<createInfo.poolSizeCount; ++i) {
215 uint32_t typeIndex = static_cast<uint32_t>(createInfo.pPoolSizes[i].type);
216 uint32_t poolSizeCount = createInfo.pPoolSizes[i].descriptorCount;
217 maxDescriptorTypeCount[typeIndex] += poolSizeCount;
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600218 }
219 for (i=0; i<maxDescriptorTypeCount.size(); ++i) {
220 maxDescriptorTypeCount[i] *= createInfo.maxSets;
221 // Initially the available counts are equal to the max counts
222 availableDescriptorTypeCount[i] = maxDescriptorTypeCount[i];
223 }
224 } else {
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800225 createInfo.pPoolSizes = NULL; // Make sure this is NULL so we don't try to clean it up
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600226 }
227 }
Mark Lobodzinski39298632015-11-18 08:38:27 -0700228 ~_DESCRIPTOR_POOL_NODE() {
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800229 if (createInfo.pPoolSizes) {
230 delete[] createInfo.pPoolSizes;
Tobin Ehlisf93f1e32015-10-20 16:16:04 -0600231 }
232 // TODO : pSets are currently freed in deletePools function which uses freeShadowUpdateTree function
233 // need to migrate that struct to smart ptrs for auto-cleanup
234 }
Mark Lobodzinski39298632015-11-18 08:38:27 -0700235} DESCRIPTOR_POOL_NODE;
Tobin Ehlis7265e832015-01-19 08:42:29 -0700236
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700237// Cmd Buffer Tracking
238typedef enum _CMD_TYPE
239{
240 CMD_BINDPIPELINE,
241 CMD_BINDPIPELINEDELTA,
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600242 CMD_SETVIEWPORTSTATE,
Courtney Goeltzenleuchter078f8172015-09-21 11:44:06 -0600243 CMD_SETSCISSORSTATE,
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600244 CMD_SETLINEWIDTHSTATE,
245 CMD_SETDEPTHBIASSTATE,
246 CMD_SETBLENDSTATE,
247 CMD_SETDEPTHBOUNDSSTATE,
248 CMD_SETSTENCILREADMASKSTATE,
249 CMD_SETSTENCILWRITEMASKSTATE,
250 CMD_SETSTENCILREFERENCESTATE,
Tobin Ehlis793ad302015-04-03 12:01:11 -0600251 CMD_BINDDESCRIPTORSETS,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700252 CMD_BINDINDEXBUFFER,
253 CMD_BINDVERTEXBUFFER,
254 CMD_DRAW,
255 CMD_DRAWINDEXED,
256 CMD_DRAWINDIRECT,
257 CMD_DRAWINDEXEDINDIRECT,
258 CMD_DISPATCH,
259 CMD_DISPATCHINDIRECT,
260 CMD_COPYBUFFER,
261 CMD_COPYIMAGE,
Tobin Ehlis793ad302015-04-03 12:01:11 -0600262 CMD_BLITIMAGE,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700263 CMD_COPYBUFFERTOIMAGE,
264 CMD_COPYIMAGETOBUFFER,
265 CMD_CLONEIMAGEDATA,
266 CMD_UPDATEBUFFER,
267 CMD_FILLBUFFER,
268 CMD_CLEARCOLORIMAGE,
Courtney Goeltzenleuchterc9323e02015-10-15 16:51:05 -0600269 CMD_CLEARATTACHMENTS,
Tobin Ehlis53eddda2015-07-01 16:46:13 -0600270 CMD_CLEARDEPTHSTENCILIMAGE,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700271 CMD_RESOLVEIMAGE,
272 CMD_SETEVENT,
273 CMD_RESETEVENT,
274 CMD_WAITEVENTS,
275 CMD_PIPELINEBARRIER,
276 CMD_BEGINQUERY,
277 CMD_ENDQUERY,
278 CMD_RESETQUERYPOOL,
Mark Lobodzinski5495d132015-09-30 16:19:16 -0600279 CMD_COPYQUERYPOOLRESULTS,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700280 CMD_WRITETIMESTAMP,
281 CMD_INITATOMICCOUNTERS,
282 CMD_LOADATOMICCOUNTERS,
283 CMD_SAVEATOMICCOUNTERS,
284 CMD_BEGINRENDERPASS,
Chia-I Wu08accc62015-07-07 11:50:03 +0800285 CMD_NEXTSUBPASS,
Tobin Ehlis67449422015-03-02 10:16:40 -0700286 CMD_ENDRENDERPASS,
Chia-I Wu0b50a1c2015-06-26 15:34:39 +0800287 CMD_EXECUTECOMMANDS,
Tobin Ehlis67449422015-03-02 10:16:40 -0700288 CMD_DBGMARKERBEGIN,
289 CMD_DBGMARKEREND,
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700290} CMD_TYPE;
291// Data structure for holding sequence of cmds in cmd buffer
292typedef struct _CMD_NODE {
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700293 CMD_TYPE type;
294 uint64_t cmdNumber;
295} CMD_NODE;
296
297typedef enum _CB_STATE
298{
299 CB_NEW, // Newly created CB w/o any cmds
300 CB_UPDATE_ACTIVE, // BeginCB has been called on this CB
301 CB_UPDATE_COMPLETE // EndCB has been called on this CB
302} CB_STATE;
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600303// CB Status -- used to track status of various bindings on cmd buffer objects
304typedef VkFlags CBStatusFlags;
305typedef enum _CBStatusFlagBits
306{
307 CBSTATUS_NONE = 0x00000000, // No status is set
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600308 CBSTATUS_VIEWPORT_SET = 0x00000001, // Viewport has been set
309 CBSTATUS_LINE_WIDTH_SET = 0x00000002, // Line width has been set
310 CBSTATUS_DEPTH_BIAS_SET = 0x00000004, // Depth bias has been set
311 CBSTATUS_COLOR_BLEND_WRITE_ENABLE = 0x00000008, // PSO w/ CB Enable set has been set
312 CBSTATUS_BLEND_SET = 0x00000010, // Blend state object has been set
313 CBSTATUS_DEPTH_WRITE_ENABLE = 0x00000020, // PSO w/ Depth Enable set has been set
314 CBSTATUS_STENCIL_TEST_ENABLE = 0x00000040, // PSO w/ Stencil Enable set has been set
315 CBSTATUS_DEPTH_BOUNDS_SET = 0x00000080, // Depth bounds state object has been set
316 CBSTATUS_STENCIL_READ_MASK_SET = 0x00000100, // Stencil read mask has been set
317 CBSTATUS_STENCIL_WRITE_MASK_SET = 0x00000200, // Stencil write mask has been set
318 CBSTATUS_STENCIL_REFERENCE_SET = 0x00000400, // Stencil reference has been set
319 CBSTATUS_INDEX_BUFFER_BOUND = 0x00000800, // Index buffer has been set
Courtney Goeltzenleuchter078f8172015-09-21 11:44:06 -0600320 CBSTATUS_SCISSOR_SET = 0x00001000, // Scissor has been set
Tobin Ehlis5e5a1e92015-10-01 09:24:40 -0600321 CBSTATUS_ALL = 0x00001FFF, // All dynamic state set
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600322} CBStatusFlagBits;
Tobin Ehlis60a9b4f2015-07-07 10:42:20 -0600323
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600324typedef struct stencil_data {
Chia-I Wu1b99bb22015-10-27 19:25:11 +0800325 uint32_t compareMask;
326 uint32_t writeMask;
327 uint32_t reference;
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600328} CBStencilData;
329
Tobin Ehlis10ae8c12015-03-17 16:24:32 -0600330// Cmd Buffer Wrapper Struct
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700331typedef struct _GLOBAL_CB_NODE {
Michael Lentineabc5e922015-10-12 11:30:14 -0500332 VkCommandBuffer commandBuffer;
333 VkCommandBufferAllocateInfo createInfo;
334 VkCommandBufferBeginInfo beginInfo;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600335 VkFence fence; // fence tracking this cmd buffer
336 uint64_t numCmds; // number of cmds in this CB
337 uint64_t drawCount[NUM_DRAW_TYPES]; // Count of each type of draw in this CB
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600338 CB_STATE state; // Track cmd buffer update state
Tobin Ehlis59278bf2015-08-18 07:10:58 -0600339 uint64_t submitCount; // Number of times CB has been submitted
Tobin Ehlise382c5a2015-06-10 12:57:07 -0600340 CBStatusFlags status; // Track status of various bindings on cmd buffer
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600341 vector<CMD_NODE*> pCmds;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700342 // Currently storing "lastBound" objects on per-CB basis
343 // long-term may want to create caches of "lastBound" states and could have
344 // each individual CMD_NODE referencing its own "lastBound" state
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600345 VkPipeline lastBoundPipeline;
346 uint32_t lastVtxBinding;
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600347 vector<VkViewport> viewports;
348 vector<VkRect2D> scissors;
349 float lineWidth;
Chia-I Wud8c946a2015-10-26 19:08:09 +0800350 float depthBiasConstantFactor;
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600351 float depthBiasClamp;
Chia-I Wud8c946a2015-10-26 19:08:09 +0800352 float depthBiasSlopeFactor;
Chia-I Wu2bfb33c2015-10-26 17:24:52 +0800353 float blendConstants[4];
Courtney Goeltzenleuchter49c73082015-09-17 15:06:17 -0600354 float minDepthBounds;
355 float maxDepthBounds;
356 CBStencilData front;
357 CBStencilData back;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600358 VkDescriptorSet lastBoundDescriptorSet;
Tobin Ehlis429b91d2015-06-22 17:20:50 -0600359 VkPipelineLayout lastBoundPipelineLayout;
Michael Lentineabc5e922015-10-12 11:30:14 -0500360 VkRenderPassBeginInfo activeRenderPassBeginInfo;
Courtney Goeltzenleuchterfb4efc62015-04-10 08:34:15 -0600361 VkRenderPass activeRenderPass;
Chia-I Wu08accc62015-07-07 11:50:03 +0800362 uint32_t activeSubpass;
Tobin Ehlisa9f3d762015-05-22 12:38:16 -0600363 VkFramebuffer framebuffer;
Tobin Ehlis559c6382015-11-05 09:52:49 -0700364 vector<VkDescriptorSet> boundDescriptorSets; // Index is set# that given set is bound to
Michael Lentineabc5e922015-10-12 11:30:14 -0500365 unordered_map<VkImage, IMAGE_CMD_BUF_NODE> imageLayoutMap;
Tobin Ehlisd01f7d62015-02-13 10:26:14 -0700366} GLOBAL_CB_NODE;
Michael Lentineabc5e922015-10-12 11:30:14 -0500367
368typedef struct _SWAPCHAIN_NODE {
369 std::vector<VkImage> images;
370} SWAPCHAIN_NODE;