Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 1 | /* |
Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 2 | * |
Courtney Goeltzenleuchter | fcbe16f | 2015-10-29 13:50:34 -0600 | [diff] [blame] | 3 | * Copyright (C) 2015 Valve Corporation |
Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 4 | * |
| 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 Goeltzenleuchter | 0555952 | 2015-10-30 11:14:30 -0600 | [diff] [blame] | 22 | * |
| 23 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
| 24 | * Author: Tobin Ehlis <tobin@lunarg.com> |
Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 25 | */ |
David Pinedo | 9316d3b | 2015-11-06 12:54:48 -0700 | [diff] [blame^] | 26 | #include "vulkan/vk_layer.h" |
Tobin Ehlis | 10ae8c1 | 2015-03-17 16:24:32 -0600 | [diff] [blame] | 27 | #include <vector> |
Tobin Ehlis | b212dfc | 2015-10-07 15:40:22 -0600 | [diff] [blame] | 28 | #include <memory> |
David Pinedo | 9316d3b | 2015-11-06 12:54:48 -0700 | [diff] [blame^] | 29 | #include "vulkan/vk_debug_report_lunarg.h" |
Tobin Ehlis | 10ae8c1 | 2015-03-17 16:24:32 -0600 | [diff] [blame] | 30 | |
| 31 | using namespace std; |
| 32 | |
Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 33 | // Draw State ERROR codes |
| 34 | typedef enum _DRAW_STATE_ERROR |
| 35 | { |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 36 | DRAWSTATE_NONE, // Used for INFO & other non-error messages |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 37 | DRAWSTATE_INTERNAL_ERROR, // Error with DrawState internal data structures |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 38 | DRAWSTATE_NO_PIPELINE_BOUND, // Unable to identify a bound pipeline |
Tobin Ehlis | 793ad30 | 2015-04-03 12:01:11 -0600 | [diff] [blame] | 39 | DRAWSTATE_INVALID_POOL, // Invalid DS pool |
Tobin Ehlis | a3a693e | 2015-02-10 15:35:23 -0700 | [diff] [blame] | 40 | DRAWSTATE_INVALID_SET, // Invalid DS |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 41 | DRAWSTATE_INVALID_LAYOUT, // Invalid DS layout |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 42 | DRAWSTATE_INVALID_IMAGE_LAYOUT, // Invalid Image layout |
Tobin Ehlis | 75283bf | 2015-06-18 15:59:33 -0600 | [diff] [blame] | 43 | DRAWSTATE_INVALID_PIPELINE, // Invalid Pipeline handle referenced |
| 44 | DRAWSTATE_INVALID_PIPELINE_CREATE_STATE, // Attempt to create a pipeline with invalid state |
Michael Lentine | 48930b8 | 2015-10-15 17:07:00 -0500 | [diff] [blame] | 45 | DRAWSTATE_INVALID_COMMAND_BUFFER, // Invalid CommandBuffer referenced |
| 46 | DRAWSTATE_INVALID_BARRIER, // Invalid Barrier |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 47 | DRAWSTATE_VTX_INDEX_OUT_OF_BOUNDS, // binding in vkCmdBindVertexData() too large for PSO's pVertexBindingDescriptions array |
Tobin Ehlis | c4c2318 | 2015-09-17 12:24:13 -0600 | [diff] [blame] | 48 | DRAWSTATE_VTX_INDEX_ALIGNMENT_ERROR, // binding offset in vkCmdBindIndexBuffer() out of alignment based on indexType |
Tobin Ehlis | 12d4c6a | 2015-08-31 12:42:38 -0600 | [diff] [blame] | 49 | //DRAWSTATE_MISSING_DOT_PROGRAM, // No "dot" program in order to generate png image |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 50 | DRAWSTATE_OUT_OF_MEMORY, // malloc failed |
| 51 | DRAWSTATE_DESCRIPTOR_TYPE_MISMATCH, // Type in layout vs. update are not the same |
Tobin Ehlis | a1f9b64 | 2015-10-27 12:25:35 -0600 | [diff] [blame] | 52 | DRAWSTATE_DESCRIPTOR_STAGEFLAGS_MISMATCH, // StageFlags in layout are not the same throughout a single VkWriteDescriptorSet update |
Tobin Ehlis | a3a693e | 2015-02-10 15:35:23 -0700 | [diff] [blame] | 53 | DRAWSTATE_DESCRIPTOR_UPDATE_OUT_OF_BOUNDS, // Descriptors set for update out of bounds for corresponding layout section |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 54 | DRAWSTATE_DESCRIPTOR_POOL_EMPTY, // Attempt to allocate descriptor from a pool with no more descriptors of that type available |
Courtney Goeltzenleuchter | bee18a9 | 2015-10-23 14:21:05 -0600 | [diff] [blame] | 55 | DRAWSTATE_CANT_FREE_FROM_NON_FREE_POOL, // Invalid to call vkFreeDescriptorSets on Sets allocated from a NON_FREE Pool |
Tobin Ehlis | 297b985 | 2015-02-23 16:09:58 -0700 | [diff] [blame] | 56 | DRAWSTATE_INVALID_UPDATE_INDEX, // Index of requested update is invalid for specified descriptors set |
Tobin Ehlis | eba312c | 2015-04-01 08:40:34 -0600 | [diff] [blame] | 57 | DRAWSTATE_INVALID_UPDATE_STRUCT, // Struct in DS Update tree is of invalid type |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 58 | DRAWSTATE_NUM_SAMPLES_MISMATCH, // Number of samples in bound PSO does not match number in FB of current RenderPass |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 59 | DRAWSTATE_NO_END_COMMAND_BUFFER, // Must call vkEndCommandBuffer() before QueueSubmit on that commandBuffer |
| 60 | DRAWSTATE_NO_BEGIN_COMMAND_BUFFER, // Binding cmds or calling End on CB that never had vkBeginCommandBuffer() called on it |
| 61 | DRAWSTATE_COMMAND_BUFFER_SINGLE_SUBMIT_VIOLATION, // Cmd Buffer created with VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT flag is submitted multiple times |
| 62 | DRAWSTATE_INVALID_SECONDARY_COMMAND_BUFFER, // vkCmdExecuteCommands() called with a primary commandBuffer in pCommandBuffers array |
Tobin Ehlis | 963a404 | 2015-09-29 08:18:34 -0600 | [diff] [blame] | 63 | DRAWSTATE_VIEWPORT_NOT_BOUND, // Draw submitted with no viewport state bound |
| 64 | DRAWSTATE_SCISSOR_NOT_BOUND, // Draw submitted with no scissor state bound |
| 65 | DRAWSTATE_LINE_WIDTH_NOT_BOUND, // Draw submitted with no line width state bound |
| 66 | DRAWSTATE_DEPTH_BIAS_NOT_BOUND, // Draw submitted with no depth bias state bound |
| 67 | DRAWSTATE_BLEND_NOT_BOUND, // Draw submitted with no blend state bound when color write enabled |
| 68 | DRAWSTATE_DEPTH_BOUNDS_NOT_BOUND, // Draw submitted with no depth bounds state bound when depth enabled |
| 69 | DRAWSTATE_STENCIL_NOT_BOUND, // Draw submitted with no stencil state bound when stencil enabled |
| 70 | DRAWSTATE_INDEX_BUFFER_NOT_BOUND, // Draw submitted with no depth-stencil state bound when depth write enabled |
Tobin Ehlis | 429b91d | 2015-06-22 17:20:50 -0600 | [diff] [blame] | 71 | DRAWSTATE_PIPELINE_LAYOUT_MISMATCH, // Draw submitted PSO Pipeline layout that doesn't match layout from BindDescriptorSets |
Tobin Ehlis | 259730a | 2015-06-23 16:13:03 -0600 | [diff] [blame] | 72 | DRAWSTATE_INVALID_RENDERPASS, // Use of a NULL or otherwise invalid RenderPass object |
Tobin Ehlis | d1fe4ec | 2015-06-23 11:22:55 -0600 | [diff] [blame] | 73 | DRAWSTATE_INVALID_RENDERPASS_CMD, // Invalid cmd submitted while a RenderPass is active |
| 74 | DRAWSTATE_NO_ACTIVE_RENDERPASS, // Rendering cmd submitted without an active RenderPass |
Tobin Ehlis | 502480b | 2015-06-24 15:53:07 -0600 | [diff] [blame] | 75 | DRAWSTATE_DESCRIPTOR_SET_NOT_UPDATED, // DescriptorSet bound but it was never updated. This is a warning code. |
Tobin Ehlis | da2f0d0 | 2015-11-04 12:28:28 -0700 | [diff] [blame] | 76 | DRAWSTATE_INVALID_DYNAMIC_OFFSET_COUNT, // DescriptorSets bound with different number of dynamic descriptors that were included in dynamicOffsetCount |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 77 | DRAWSTATE_CLEAR_CMD_BEFORE_DRAW, // Clear cmd issued before any Draw in CommandBuffer, should use RenderPass Ops instead |
Mark Lobodzinski | d9139a6 | 2015-08-04 16:24:20 -0600 | [diff] [blame] | 78 | DRAWSTATE_BEGIN_CB_INVALID_STATE, // Primary/Secondary CB created with mismatched FB/RP information |
Tobin Ehlis | e68360f | 2015-10-01 11:15:13 -0600 | [diff] [blame] | 79 | DRAWSTATE_VIEWPORT_SCISSOR_MISMATCH, // Count for viewports and scissors mismatch and/or state doesn't match count |
Mark Lobodzinski | f53c6e5 | 2015-10-16 13:32:24 -0600 | [diff] [blame] | 80 | DRAWSTATE_INVALID_IMAGE_ASPECT, // Image aspect is invalid for the current operation |
Mark Lobodzinski | 13ec6b0 | 2015-10-16 09:17:27 -0600 | [diff] [blame] | 81 | DRAWSTATE_MISSING_ATTACHMENT_REFERENCE, // Attachment reference must be present in active subpass |
Tobin Ehlis | 75283bf | 2015-06-18 15:59:33 -0600 | [diff] [blame] | 82 | DRAWSTATE_INVALID_EXTENSION, |
Tobin Ehlis | a1c2856 | 2015-10-23 16:00:08 -0600 | [diff] [blame] | 83 | DRAWSTATE_SAMPLER_DESCRIPTOR_ERROR, // A Descriptor of *_SAMPLER type is being updated with an invalid or bad Sampler |
Tobin Ehlis | a1f9b64 | 2015-10-27 12:25:35 -0600 | [diff] [blame] | 84 | 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 Ehlis | a1c2856 | 2015-10-23 16:00:08 -0600 | [diff] [blame] | 85 | DRAWSTATE_IMAGEVIEW_DESCRIPTOR_ERROR, // A Descriptor of *_IMAGE or *_ATTACHMENT type is being updated with an invalid or bad ImageView |
| 86 | DRAWSTATE_BUFFERVIEW_DESCRIPTOR_ERROR, // A Descriptor of *_TEXEL_BUFFER type is being updated with an invalid or bad BufferView |
| 87 | DRAWSTATE_BUFFERINFO_DESCRIPTOR_ERROR, // A Descriptor of *_[UNIFORM|STORAGE]_BUFFER_[DYNAMIC] type is being updated with an invalid or bad BufferView |
Tobin Ehlis | 246ba4d | 2014-11-18 16:38:08 -0700 | [diff] [blame] | 88 | } DRAW_STATE_ERROR; |
Tobin Ehlis | 5742e77 | 2014-11-20 09:49:17 -0700 | [diff] [blame] | 89 | |
| 90 | typedef enum _DRAW_TYPE |
| 91 | { |
| 92 | DRAW = 0, |
| 93 | DRAW_INDEXED = 1, |
| 94 | DRAW_INDIRECT = 2, |
| 95 | DRAW_INDEXED_INDIRECT = 3, |
| 96 | DRAW_BEGIN_RANGE = DRAW, |
| 97 | DRAW_END_RANGE = DRAW_INDEXED_INDIRECT, |
| 98 | NUM_DRAW_TYPES = (DRAW_END_RANGE - DRAW_BEGIN_RANGE + 1), |
| 99 | } DRAW_TYPE; |
Tobin Ehlis | 8356288 | 2014-11-27 15:43:39 -0700 | [diff] [blame] | 100 | |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 101 | typedef struct _SHADER_DS_MAPPING { |
| 102 | uint32_t slotCount; |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 103 | VkDescriptorSetLayoutCreateInfo* pShaderMappingSlot; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 104 | } SHADER_DS_MAPPING; |
| 105 | |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 106 | typedef struct _GENERIC_HEADER { |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 107 | VkStructureType sType; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 108 | const void* pNext; |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 109 | } GENERIC_HEADER; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 110 | |
| 111 | typedef struct _PIPELINE_NODE { |
Tony Barbour | dd6e32e | 2015-07-10 15:29:03 -0600 | [diff] [blame] | 112 | VkPipeline pipeline; |
| 113 | VkGraphicsPipelineCreateInfo graphicsPipelineCI; |
| 114 | VkPipelineVertexInputStateCreateInfo vertexInputCI; |
| 115 | VkPipelineInputAssemblyStateCreateInfo iaStateCI; |
| 116 | VkPipelineTessellationStateCreateInfo tessStateCI; |
| 117 | VkPipelineViewportStateCreateInfo vpStateCI; |
Chia-I Wu | 3432a0c | 2015-10-27 18:04:07 +0800 | [diff] [blame] | 118 | VkPipelineRasterizationStateCreateInfo rsStateCI; |
Tony Barbour | dd6e32e | 2015-07-10 15:29:03 -0600 | [diff] [blame] | 119 | VkPipelineMultisampleStateCreateInfo msStateCI; |
| 120 | VkPipelineColorBlendStateCreateInfo cbStateCI; |
| 121 | VkPipelineDepthStencilStateCreateInfo dsStateCI; |
Tobin Ehlis | 963a404 | 2015-09-29 08:18:34 -0600 | [diff] [blame] | 122 | VkPipelineDynamicStateCreateInfo dynStateCI; |
Tony Barbour | dd6e32e | 2015-07-10 15:29:03 -0600 | [diff] [blame] | 123 | VkPipelineShaderStageCreateInfo vsCI; |
| 124 | VkPipelineShaderStageCreateInfo tcsCI; |
| 125 | VkPipelineShaderStageCreateInfo tesCI; |
| 126 | VkPipelineShaderStageCreateInfo gsCI; |
| 127 | VkPipelineShaderStageCreateInfo fsCI; |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 128 | // Compute shader is include in VkComputePipelineCreateInfo |
Mark Lobodzinski | d5732f3 | 2015-06-23 15:11:57 -0600 | [diff] [blame] | 129 | VkComputePipelineCreateInfo computePipelineCI; |
Tobin Ehlis | a85167d | 2015-06-18 11:02:59 -0600 | [diff] [blame] | 130 | // Flag of which shader stages are active for this pipeline |
Mark Lobodzinski | d5732f3 | 2015-06-23 15:11:57 -0600 | [diff] [blame] | 131 | uint32_t active_shaders; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 132 | // Vtx input info (if any) |
Mark Lobodzinski | d5732f3 | 2015-06-23 15:11:57 -0600 | [diff] [blame] | 133 | uint32_t vtxBindingCount; // number of bindings |
| 134 | VkVertexInputBindingDescription* pVertexBindingDescriptions; |
| 135 | uint32_t vtxAttributeCount; // number of attributes |
| 136 | VkVertexInputAttributeDescription* pVertexAttributeDescriptions; |
| 137 | uint32_t attachmentCount; // number of CB attachments |
Tony Barbour | dd6e32e | 2015-07-10 15:29:03 -0600 | [diff] [blame] | 138 | VkPipelineColorBlendAttachmentState* pAttachments; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 139 | } PIPELINE_NODE; |
| 140 | |
| 141 | typedef struct _SAMPLER_NODE { |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 142 | VkSampler sampler; |
| 143 | VkSamplerCreateInfo createInfo; |
Tobin Ehlis | b212dfc | 2015-10-07 15:40:22 -0600 | [diff] [blame] | 144 | |
| 145 | _SAMPLER_NODE(const VkSampler* ps, const VkSamplerCreateInfo* pci) : sampler(*ps), createInfo(*pci) {}; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 146 | } SAMPLER_NODE; |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 147 | |
| 148 | typedef struct _IMAGE_NODE { |
| 149 | VkImageLayout layout; |
| 150 | } IMAGE_NODE; |
| 151 | |
| 152 | typedef struct _IMAGE_CMD_BUF_NODE { |
| 153 | VkImageLayout layout; |
| 154 | VkImageLayout initialLayout; |
| 155 | } IMAGE_CMD_BUF_NODE; |
| 156 | |
Michael Lentine | 48930b8 | 2015-10-15 17:07:00 -0500 | [diff] [blame] | 157 | typedef struct _RENDER_PASS_NODE { |
| 158 | VkRenderPassCreateInfo* createInfo; |
| 159 | std::vector<bool> hasSelfDependency; |
| 160 | } RENDER_PASS_NODE; |
| 161 | |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 162 | // Descriptor Data structures |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 163 | // Layout Node has the core layout data |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 164 | typedef struct _LAYOUT_NODE { |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 165 | VkDescriptorSetLayout layout; |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 166 | VkDescriptorSetLayoutCreateInfo createInfo; |
| 167 | uint32_t startIndex; // 1st index of this layout |
| 168 | uint32_t endIndex; // last index of this layout |
Tobin Ehlis | da2f0d0 | 2015-11-04 12:28:28 -0700 | [diff] [blame] | 169 | uint32_t dynamicDescriptorCount; // Total count of dynamic descriptors used by this layout |
Tobin Ehlis | 644ff04 | 2015-10-20 10:11:55 -0600 | [diff] [blame] | 170 | vector<VkDescriptorType> descriptorTypes; // Type per descriptor in this layout to verify correct updates |
Tobin Ehlis | a1f9b64 | 2015-10-27 12:25:35 -0600 | [diff] [blame] | 171 | vector<VkShaderStageFlags> stageFlags; // stageFlags per descriptor in this layout to verify correct updates |
Chia-I Wu | d46e6ae | 2015-10-31 00:31:16 +0800 | [diff] [blame] | 172 | unordered_set<uint32_t> bindings; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 173 | } LAYOUT_NODE; |
Tobin Ehlis | 644ff04 | 2015-10-20 10:11:55 -0600 | [diff] [blame] | 174 | // Store layouts and pushconstants for PipelineLayout |
| 175 | struct PIPELINE_LAYOUT_NODE { |
| 176 | vector<VkDescriptorSetLayout> descriptorSetLayouts; |
| 177 | vector<VkPushConstantRange> pushConstantRanges; |
| 178 | }; |
| 179 | |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 180 | typedef struct _SET_NODE { |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 181 | VkDescriptorSet set; |
| 182 | VkDescriptorPool pool; |
Tobin Ehlis | 481ec71 | 2015-02-19 09:55:18 -0700 | [diff] [blame] | 183 | // Head of LL of all Update structs for this set |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 184 | GENERIC_HEADER* pUpdateStructs; |
Tobin Ehlis | 04178d7 | 2015-01-22 10:45:21 -0700 | [diff] [blame] | 185 | // Total num of descriptors in this set (count of its layout plus all prior layouts) |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 186 | uint32_t descriptorCount; |
| 187 | GENERIC_HEADER** ppDescriptors; // Array where each index points to update node for its slot |
| 188 | LAYOUT_NODE* pLayout; // Layout for this set |
| 189 | struct _SET_NODE* pNext; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 190 | } SET_NODE; |
| 191 | |
Tobin Ehlis | 793ad30 | 2015-04-03 12:01:11 -0600 | [diff] [blame] | 192 | typedef struct _POOL_NODE { |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 193 | VkDescriptorPool pool; |
Courtney Goeltzenleuchter | bee18a9 | 2015-10-23 14:21:05 -0600 | [diff] [blame] | 194 | uint32_t maxSets; |
Tobin Ehlis | ce132d8 | 2015-06-19 15:07:05 -0600 | [diff] [blame] | 195 | VkDescriptorPoolCreateInfo createInfo; |
| 196 | SET_NODE* pSets; // Head of LL of sets for this Pool |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 197 | vector<uint32_t> maxDescriptorTypeCount; // max # of descriptors of each type in this pool |
| 198 | vector<uint32_t> availableDescriptorTypeCount; // available # of descriptors of each type in this pool |
| 199 | |
| 200 | _POOL_NODE(const VkDescriptorPool pool, const VkDescriptorPoolCreateInfo* pCreateInfo) : |
Courtney Goeltzenleuchter | bee18a9 | 2015-10-23 14:21:05 -0600 | [diff] [blame] | 201 | pool(pool), createInfo(*pCreateInfo), maxSets(pCreateInfo->maxSets), pSets(NULL), |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 202 | maxDescriptorTypeCount(VK_DESCRIPTOR_TYPE_END_RANGE), availableDescriptorTypeCount(VK_DESCRIPTOR_TYPE_END_RANGE) |
| 203 | { |
Chia-I Wu | 1b99bb2 | 2015-10-27 19:25:11 +0800 | [diff] [blame] | 204 | if (createInfo.poolSizeCount) { // Shadow type struct from ptr into local struct |
| 205 | size_t poolSizeCountSize = createInfo.poolSizeCount * sizeof(VkDescriptorPoolSize); |
| 206 | createInfo.pPoolSizes = new VkDescriptorPoolSize[poolSizeCountSize]; |
| 207 | memcpy((void*)createInfo.pPoolSizes, pCreateInfo->pPoolSizes, poolSizeCountSize); |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 208 | // Now set max counts for each descriptor type based on count of that type times maxSets |
Courtney Goeltzenleuchter | 6ed5dc2 | 2015-11-03 15:41:43 -0700 | [diff] [blame] | 209 | uint32_t i=0; |
Chia-I Wu | 1b99bb2 | 2015-10-27 19:25:11 +0800 | [diff] [blame] | 210 | for (i=0; i<createInfo.poolSizeCount; ++i) { |
| 211 | uint32_t typeIndex = static_cast<uint32_t>(createInfo.pPoolSizes[i].type); |
| 212 | uint32_t poolSizeCount = createInfo.pPoolSizes[i].descriptorCount; |
| 213 | maxDescriptorTypeCount[typeIndex] += poolSizeCount; |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 214 | } |
| 215 | for (i=0; i<maxDescriptorTypeCount.size(); ++i) { |
| 216 | maxDescriptorTypeCount[i] *= createInfo.maxSets; |
| 217 | // Initially the available counts are equal to the max counts |
| 218 | availableDescriptorTypeCount[i] = maxDescriptorTypeCount[i]; |
| 219 | } |
| 220 | } else { |
Chia-I Wu | 1b99bb2 | 2015-10-27 19:25:11 +0800 | [diff] [blame] | 221 | createInfo.pPoolSizes = NULL; // Make sure this is NULL so we don't try to clean it up |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 222 | } |
| 223 | } |
| 224 | ~_POOL_NODE() { |
Chia-I Wu | 1b99bb2 | 2015-10-27 19:25:11 +0800 | [diff] [blame] | 225 | if (createInfo.pPoolSizes) { |
| 226 | delete[] createInfo.pPoolSizes; |
Tobin Ehlis | f93f1e3 | 2015-10-20 16:16:04 -0600 | [diff] [blame] | 227 | } |
| 228 | // TODO : pSets are currently freed in deletePools function which uses freeShadowUpdateTree function |
| 229 | // need to migrate that struct to smart ptrs for auto-cleanup |
| 230 | } |
Tobin Ehlis | 793ad30 | 2015-04-03 12:01:11 -0600 | [diff] [blame] | 231 | } POOL_NODE; |
Tobin Ehlis | 7265e83 | 2015-01-19 08:42:29 -0700 | [diff] [blame] | 232 | |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 233 | // Cmd Buffer Tracking |
| 234 | typedef enum _CMD_TYPE |
| 235 | { |
| 236 | CMD_BINDPIPELINE, |
| 237 | CMD_BINDPIPELINEDELTA, |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 238 | CMD_SETVIEWPORTSTATE, |
Courtney Goeltzenleuchter | 078f817 | 2015-09-21 11:44:06 -0600 | [diff] [blame] | 239 | CMD_SETSCISSORSTATE, |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 240 | CMD_SETLINEWIDTHSTATE, |
| 241 | CMD_SETDEPTHBIASSTATE, |
| 242 | CMD_SETBLENDSTATE, |
| 243 | CMD_SETDEPTHBOUNDSSTATE, |
| 244 | CMD_SETSTENCILREADMASKSTATE, |
| 245 | CMD_SETSTENCILWRITEMASKSTATE, |
| 246 | CMD_SETSTENCILREFERENCESTATE, |
Tobin Ehlis | 793ad30 | 2015-04-03 12:01:11 -0600 | [diff] [blame] | 247 | CMD_BINDDESCRIPTORSETS, |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 248 | CMD_BINDINDEXBUFFER, |
| 249 | CMD_BINDVERTEXBUFFER, |
| 250 | CMD_DRAW, |
| 251 | CMD_DRAWINDEXED, |
| 252 | CMD_DRAWINDIRECT, |
| 253 | CMD_DRAWINDEXEDINDIRECT, |
| 254 | CMD_DISPATCH, |
| 255 | CMD_DISPATCHINDIRECT, |
| 256 | CMD_COPYBUFFER, |
| 257 | CMD_COPYIMAGE, |
Tobin Ehlis | 793ad30 | 2015-04-03 12:01:11 -0600 | [diff] [blame] | 258 | CMD_BLITIMAGE, |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 259 | CMD_COPYBUFFERTOIMAGE, |
| 260 | CMD_COPYIMAGETOBUFFER, |
| 261 | CMD_CLONEIMAGEDATA, |
| 262 | CMD_UPDATEBUFFER, |
| 263 | CMD_FILLBUFFER, |
| 264 | CMD_CLEARCOLORIMAGE, |
Courtney Goeltzenleuchter | c9323e0 | 2015-10-15 16:51:05 -0600 | [diff] [blame] | 265 | CMD_CLEARATTACHMENTS, |
Tobin Ehlis | 53eddda | 2015-07-01 16:46:13 -0600 | [diff] [blame] | 266 | CMD_CLEARDEPTHSTENCILIMAGE, |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 267 | CMD_RESOLVEIMAGE, |
| 268 | CMD_SETEVENT, |
| 269 | CMD_RESETEVENT, |
| 270 | CMD_WAITEVENTS, |
| 271 | CMD_PIPELINEBARRIER, |
| 272 | CMD_BEGINQUERY, |
| 273 | CMD_ENDQUERY, |
| 274 | CMD_RESETQUERYPOOL, |
Mark Lobodzinski | 5495d13 | 2015-09-30 16:19:16 -0600 | [diff] [blame] | 275 | CMD_COPYQUERYPOOLRESULTS, |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 276 | CMD_WRITETIMESTAMP, |
| 277 | CMD_INITATOMICCOUNTERS, |
| 278 | CMD_LOADATOMICCOUNTERS, |
| 279 | CMD_SAVEATOMICCOUNTERS, |
| 280 | CMD_BEGINRENDERPASS, |
Chia-I Wu | 08accc6 | 2015-07-07 11:50:03 +0800 | [diff] [blame] | 281 | CMD_NEXTSUBPASS, |
Tobin Ehlis | 6744942 | 2015-03-02 10:16:40 -0700 | [diff] [blame] | 282 | CMD_ENDRENDERPASS, |
Chia-I Wu | 0b50a1c | 2015-06-26 15:34:39 +0800 | [diff] [blame] | 283 | CMD_EXECUTECOMMANDS, |
Tobin Ehlis | 6744942 | 2015-03-02 10:16:40 -0700 | [diff] [blame] | 284 | CMD_DBGMARKERBEGIN, |
| 285 | CMD_DBGMARKEREND, |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 286 | } CMD_TYPE; |
| 287 | // Data structure for holding sequence of cmds in cmd buffer |
| 288 | typedef struct _CMD_NODE { |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 289 | CMD_TYPE type; |
| 290 | uint64_t cmdNumber; |
| 291 | } CMD_NODE; |
| 292 | |
| 293 | typedef enum _CB_STATE |
| 294 | { |
| 295 | CB_NEW, // Newly created CB w/o any cmds |
| 296 | CB_UPDATE_ACTIVE, // BeginCB has been called on this CB |
| 297 | CB_UPDATE_COMPLETE // EndCB has been called on this CB |
| 298 | } CB_STATE; |
Tobin Ehlis | e382c5a | 2015-06-10 12:57:07 -0600 | [diff] [blame] | 299 | // CB Status -- used to track status of various bindings on cmd buffer objects |
| 300 | typedef VkFlags CBStatusFlags; |
| 301 | typedef enum _CBStatusFlagBits |
| 302 | { |
| 303 | CBSTATUS_NONE = 0x00000000, // No status is set |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 304 | CBSTATUS_VIEWPORT_SET = 0x00000001, // Viewport has been set |
| 305 | CBSTATUS_LINE_WIDTH_SET = 0x00000002, // Line width has been set |
| 306 | CBSTATUS_DEPTH_BIAS_SET = 0x00000004, // Depth bias has been set |
| 307 | CBSTATUS_COLOR_BLEND_WRITE_ENABLE = 0x00000008, // PSO w/ CB Enable set has been set |
| 308 | CBSTATUS_BLEND_SET = 0x00000010, // Blend state object has been set |
| 309 | CBSTATUS_DEPTH_WRITE_ENABLE = 0x00000020, // PSO w/ Depth Enable set has been set |
| 310 | CBSTATUS_STENCIL_TEST_ENABLE = 0x00000040, // PSO w/ Stencil Enable set has been set |
| 311 | CBSTATUS_DEPTH_BOUNDS_SET = 0x00000080, // Depth bounds state object has been set |
| 312 | CBSTATUS_STENCIL_READ_MASK_SET = 0x00000100, // Stencil read mask has been set |
| 313 | CBSTATUS_STENCIL_WRITE_MASK_SET = 0x00000200, // Stencil write mask has been set |
| 314 | CBSTATUS_STENCIL_REFERENCE_SET = 0x00000400, // Stencil reference has been set |
| 315 | CBSTATUS_INDEX_BUFFER_BOUND = 0x00000800, // Index buffer has been set |
Courtney Goeltzenleuchter | 078f817 | 2015-09-21 11:44:06 -0600 | [diff] [blame] | 316 | CBSTATUS_SCISSOR_SET = 0x00001000, // Scissor has been set |
Tobin Ehlis | 5e5a1e9 | 2015-10-01 09:24:40 -0600 | [diff] [blame] | 317 | CBSTATUS_ALL = 0x00001FFF, // All dynamic state set |
Tobin Ehlis | e382c5a | 2015-06-10 12:57:07 -0600 | [diff] [blame] | 318 | } CBStatusFlagBits; |
Tobin Ehlis | 60a9b4f | 2015-07-07 10:42:20 -0600 | [diff] [blame] | 319 | |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 320 | typedef struct stencil_data { |
Chia-I Wu | 1b99bb2 | 2015-10-27 19:25:11 +0800 | [diff] [blame] | 321 | uint32_t compareMask; |
| 322 | uint32_t writeMask; |
| 323 | uint32_t reference; |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 324 | } CBStencilData; |
| 325 | |
Tobin Ehlis | 10ae8c1 | 2015-03-17 16:24:32 -0600 | [diff] [blame] | 326 | // Cmd Buffer Wrapper Struct |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 327 | typedef struct _GLOBAL_CB_NODE { |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 328 | VkCommandBuffer commandBuffer; |
| 329 | VkCommandBufferAllocateInfo createInfo; |
| 330 | VkCommandBufferBeginInfo beginInfo; |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 331 | VkFence fence; // fence tracking this cmd buffer |
| 332 | uint64_t numCmds; // number of cmds in this CB |
| 333 | uint64_t drawCount[NUM_DRAW_TYPES]; // Count of each type of draw in this CB |
Tobin Ehlis | e382c5a | 2015-06-10 12:57:07 -0600 | [diff] [blame] | 334 | CB_STATE state; // Track cmd buffer update state |
Tobin Ehlis | 59278bf | 2015-08-18 07:10:58 -0600 | [diff] [blame] | 335 | uint64_t submitCount; // Number of times CB has been submitted |
Tobin Ehlis | e382c5a | 2015-06-10 12:57:07 -0600 | [diff] [blame] | 336 | CBStatusFlags status; // Track status of various bindings on cmd buffer |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 337 | vector<CMD_NODE*> pCmds; |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 338 | // Currently storing "lastBound" objects on per-CB basis |
| 339 | // long-term may want to create caches of "lastBound" states and could have |
| 340 | // each individual CMD_NODE referencing its own "lastBound" state |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 341 | VkPipeline lastBoundPipeline; |
| 342 | uint32_t lastVtxBinding; |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 343 | vector<VkViewport> viewports; |
| 344 | vector<VkRect2D> scissors; |
| 345 | float lineWidth; |
Chia-I Wu | d8c946a | 2015-10-26 19:08:09 +0800 | [diff] [blame] | 346 | float depthBiasConstantFactor; |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 347 | float depthBiasClamp; |
Chia-I Wu | d8c946a | 2015-10-26 19:08:09 +0800 | [diff] [blame] | 348 | float depthBiasSlopeFactor; |
Chia-I Wu | 2bfb33c | 2015-10-26 17:24:52 +0800 | [diff] [blame] | 349 | float blendConstants[4]; |
Courtney Goeltzenleuchter | 49c7308 | 2015-09-17 15:06:17 -0600 | [diff] [blame] | 350 | float minDepthBounds; |
| 351 | float maxDepthBounds; |
| 352 | CBStencilData front; |
| 353 | CBStencilData back; |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 354 | VkDescriptorSet lastBoundDescriptorSet; |
Tobin Ehlis | 429b91d | 2015-06-22 17:20:50 -0600 | [diff] [blame] | 355 | VkPipelineLayout lastBoundPipelineLayout; |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 356 | VkRenderPassBeginInfo activeRenderPassBeginInfo; |
Courtney Goeltzenleuchter | fb4efc6 | 2015-04-10 08:34:15 -0600 | [diff] [blame] | 357 | VkRenderPass activeRenderPass; |
Chia-I Wu | 08accc6 | 2015-07-07 11:50:03 +0800 | [diff] [blame] | 358 | uint32_t activeSubpass; |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 359 | VkFramebuffer framebuffer; |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 360 | VkCommandBufferLevel level; |
Tobin Ehlis | a9f3d76 | 2015-05-22 12:38:16 -0600 | [diff] [blame] | 361 | vector<VkDescriptorSet> boundDescriptorSets; |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 362 | unordered_map<VkImage, IMAGE_CMD_BUF_NODE> imageLayoutMap; |
Tobin Ehlis | d01f7d6 | 2015-02-13 10:26:14 -0700 | [diff] [blame] | 363 | } GLOBAL_CB_NODE; |
Michael Lentine | abc5e92 | 2015-10-12 11:30:14 -0500 | [diff] [blame] | 364 | |
| 365 | typedef struct _SWAPCHAIN_NODE { |
| 366 | std::vector<VkImage> images; |
| 367 | } SWAPCHAIN_NODE; |