Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef GrVkCommandBuffer_DEFINED |
| 9 | #define GrVkCommandBuffer_DEFINED |
| 10 | |
| 11 | #include "GrVkGpu.h" |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 12 | #include "GrVkResource.h" |
Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 13 | #include "GrVkSemaphore.h" |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 14 | #include "GrVkUtil.h" |
Greg Daniel | 487132b | 2018-12-20 14:09:36 -0500 | [diff] [blame] | 15 | #include "vk/GrVkTypes.h" |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 16 | |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 17 | class GrVkBuffer; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 18 | class GrVkFramebuffer; |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 19 | class GrVkIndexBuffer; |
| 20 | class GrVkImage; |
egdaniel | 470d77a | 2016-03-18 12:50:27 -0700 | [diff] [blame] | 21 | class GrVkPipeline; |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 22 | class GrVkPipelineState; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 23 | class GrVkRenderPass; |
| 24 | class GrVkRenderTarget; |
| 25 | class GrVkTransferBuffer; |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 26 | class GrVkVertexBuffer; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 27 | |
| 28 | class GrVkCommandBuffer : public GrVkResource { |
| 29 | public: |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 30 | void invalidateState(); |
| 31 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 32 | //////////////////////////////////////////////////////////////////////////// |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 33 | // CommandBuffer commands |
| 34 | //////////////////////////////////////////////////////////////////////////// |
| 35 | enum BarrierType { |
| 36 | kMemory_BarrierType, |
| 37 | kBufferMemory_BarrierType, |
| 38 | kImageMemory_BarrierType |
| 39 | }; |
| 40 | |
| 41 | void pipelineBarrier(const GrVkGpu* gpu, |
Greg Daniel | 59dc148 | 2019-02-22 10:46:38 -0500 | [diff] [blame] | 42 | const GrVkResource* resource, |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 43 | VkPipelineStageFlags srcStageMask, |
| 44 | VkPipelineStageFlags dstStageMask, |
| 45 | bool byRegion, |
| 46 | BarrierType barrierType, |
Greg Daniel | 59dc148 | 2019-02-22 10:46:38 -0500 | [diff] [blame] | 47 | void* barrier); |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 48 | |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 49 | void bindInputBuffer(GrVkGpu* gpu, uint32_t binding, const GrVkVertexBuffer* vbuffer); |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 50 | |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 51 | void bindIndexBuffer(GrVkGpu* gpu, const GrVkIndexBuffer* ibuffer); |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 52 | |
egdaniel | 58a8d92 | 2016-04-21 08:03:10 -0700 | [diff] [blame] | 53 | void bindPipeline(const GrVkGpu* gpu, const GrVkPipeline* pipeline); |
| 54 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 55 | void bindDescriptorSets(const GrVkGpu* gpu, |
egdaniel | 22281c1 | 2016-03-23 13:49:40 -0700 | [diff] [blame] | 56 | GrVkPipelineState*, |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 57 | GrVkPipelineLayout* layout, |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 58 | uint32_t firstSet, |
| 59 | uint32_t setCount, |
| 60 | const VkDescriptorSet* descriptorSets, |
| 61 | uint32_t dynamicOffsetCount, |
| 62 | const uint32_t* dynamicOffsets); |
| 63 | |
egdaniel | bc9b296 | 2016-09-27 08:00:53 -0700 | [diff] [blame] | 64 | void bindDescriptorSets(const GrVkGpu* gpu, |
| 65 | const SkTArray<const GrVkRecycledResource*>&, |
| 66 | const SkTArray<const GrVkResource*>&, |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 67 | GrVkPipelineLayout* layout, |
egdaniel | bc9b296 | 2016-09-27 08:00:53 -0700 | [diff] [blame] | 68 | uint32_t firstSet, |
| 69 | uint32_t setCount, |
| 70 | const VkDescriptorSet* descriptorSets, |
| 71 | uint32_t dynamicOffsetCount, |
| 72 | const uint32_t* dynamicOffsets); |
| 73 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 74 | GrVkCommandPool* commandPool() { return fCmdPool; } |
| 75 | |
egdaniel | 470d77a | 2016-03-18 12:50:27 -0700 | [diff] [blame] | 76 | void setViewport(const GrVkGpu* gpu, |
| 77 | uint32_t firstViewport, |
| 78 | uint32_t viewportCount, |
| 79 | const VkViewport* viewports); |
| 80 | |
| 81 | void setScissor(const GrVkGpu* gpu, |
| 82 | uint32_t firstScissor, |
| 83 | uint32_t scissorCount, |
| 84 | const VkRect2D* scissors); |
| 85 | |
| 86 | void setBlendConstants(const GrVkGpu* gpu, const float blendConstants[4]); |
| 87 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 88 | // Commands that only work inside of a render pass |
| 89 | void clearAttachments(const GrVkGpu* gpu, |
| 90 | int numAttachments, |
| 91 | const VkClearAttachment* attachments, |
| 92 | int numRects, |
| 93 | const VkClearRect* clearRects) const; |
| 94 | |
| 95 | void drawIndexed(const GrVkGpu* gpu, |
| 96 | uint32_t indexCount, |
| 97 | uint32_t instanceCount, |
| 98 | uint32_t firstIndex, |
| 99 | int32_t vertexOffset, |
| 100 | uint32_t firstInstance) const; |
| 101 | |
| 102 | void draw(const GrVkGpu* gpu, |
| 103 | uint32_t vertexCount, |
| 104 | uint32_t instanceCount, |
| 105 | uint32_t firstVertex, |
| 106 | uint32_t firstInstance) const; |
| 107 | |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 108 | // Add ref-counted resource that will be tracked and released when this command buffer finishes |
| 109 | // execution |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 110 | void addResource(const GrVkResource* resource) { |
| 111 | resource->ref(); |
Brian Salomon | 614c1a8 | 2018-12-19 15:42:06 -0500 | [diff] [blame] | 112 | resource->notifyAddedToCommandBuffer(); |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 113 | fTrackedResources.append(1, &resource); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 114 | } |
| 115 | |
egdaniel | c1be9bc | 2016-07-20 08:33:00 -0700 | [diff] [blame] | 116 | // Add ref-counted resource that will be tracked and released when this command buffer finishes |
| 117 | // execution. When it is released, it will signal that the resource can be recycled for reuse. |
| 118 | void addRecycledResource(const GrVkRecycledResource* resource) { |
| 119 | resource->ref(); |
Brian Salomon | 614c1a8 | 2018-12-19 15:42:06 -0500 | [diff] [blame] | 120 | resource->notifyAddedToCommandBuffer(); |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 121 | fTrackedRecycledResources.append(1, &resource); |
egdaniel | c1be9bc | 2016-07-20 08:33:00 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 124 | // Add ref-counted resource that will be tracked and released when this command buffer finishes |
| 125 | // recording. |
| 126 | void addRecordingResource(const GrVkResource* resource) { |
| 127 | resource->ref(); |
Brian Salomon | 614c1a8 | 2018-12-19 15:42:06 -0500 | [diff] [blame] | 128 | resource->notifyAddedToCommandBuffer(); |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 129 | fTrackedRecordingResources.append(1, &resource); |
| 130 | } |
| 131 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 132 | void releaseResources(GrVkGpu* gpu); |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 133 | |
Robert Phillips | ce0a2bf | 2019-04-02 13:37:34 -0400 | [diff] [blame] | 134 | bool hasWork() const { return fHasWork; } |
| 135 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 136 | protected: |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 137 | GrVkCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool, |
Greg Daniel | 070cbaf | 2019-01-03 17:35:54 -0500 | [diff] [blame] | 138 | const GrVkRenderPass* rp = nullptr) |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 139 | : fIsActive(false) |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 140 | , fActiveRenderPass(rp) |
| 141 | , fCmdBuffer(cmdBuffer) |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 142 | , fCmdPool(cmdPool) |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 143 | , fNumResets(0) { |
| 144 | fTrackedResources.setReserve(kInitialTrackedResourcesCount); |
| 145 | fTrackedRecycledResources.setReserve(kInitialTrackedResourcesCount); |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 146 | fTrackedRecordingResources.setReserve(kInitialTrackedResourcesCount); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 147 | this->invalidateState(); |
| 148 | } |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 149 | |
Greg Daniel | 070cbaf | 2019-01-03 17:35:54 -0500 | [diff] [blame] | 150 | bool isWrapped() const { |
| 151 | return fCmdPool == nullptr; |
| 152 | } |
| 153 | |
Robert Phillips | ce0a2bf | 2019-04-02 13:37:34 -0400 | [diff] [blame] | 154 | void addedWork() const { fHasWork = true; } |
| 155 | |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 156 | SkTDArray<const GrVkResource*> fTrackedResources; |
| 157 | SkTDArray<const GrVkRecycledResource*> fTrackedRecycledResources; |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 158 | SkTDArray<const GrVkResource*> fTrackedRecordingResources; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 159 | |
| 160 | // Tracks whether we are in the middle of a command buffer begin/end calls and thus can add |
| 161 | // new commands to the buffer; |
| 162 | bool fIsActive; |
| 163 | |
| 164 | // Stores a pointer to the current active render pass (i.e. begin has been called but not |
| 165 | // end). A nullptr means there is no active render pass. The GrVKCommandBuffer does not own |
| 166 | // the render pass. |
| 167 | const GrVkRenderPass* fActiveRenderPass; |
| 168 | |
| 169 | VkCommandBuffer fCmdBuffer; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 170 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 171 | // Raw pointer, not refcounted. The command pool controls the command buffer's lifespan, so |
| 172 | // it's guaranteed to outlive us. |
| 173 | GrVkCommandPool* fCmdPool; |
| 174 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 175 | private: |
| 176 | static const int kInitialTrackedResourcesCount = 32; |
| 177 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 178 | void freeGPUData(GrVkGpu* gpu) const final override; |
| 179 | virtual void onFreeGPUData(GrVkGpu* gpu) const = 0; |
| 180 | void abandonGPUData() const final override; |
| 181 | virtual void onAbandonGPUData() const = 0; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 182 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 183 | virtual void onReleaseResources(GrVkGpu* gpu) {} |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 184 | |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 185 | static constexpr uint32_t kMaxInputBuffers = 2; |
| 186 | |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 187 | VkBuffer fBoundInputBuffers[kMaxInputBuffers]; |
| 188 | VkBuffer fBoundIndexBuffer; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 189 | |
egdaniel | 594739c | 2016-09-20 12:39:25 -0700 | [diff] [blame] | 190 | // When resetting the command buffer, we remove the tracked resources from their arrays, and |
| 191 | // we prefer to not free all the memory every time so usually we just rewind. However, to avoid |
| 192 | // all arrays growing to the max size, after so many resets we'll do a full reset of the tracked |
| 193 | // resource arrays. |
| 194 | static const int kNumRewindResetsBeforeFullReset = 8; |
| 195 | int fNumResets; |
| 196 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 197 | // Cached values used for dynamic state updates |
| 198 | VkViewport fCachedViewport; |
| 199 | VkRect2D fCachedScissor; |
| 200 | float fCachedBlendConstant[4]; |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 201 | |
| 202 | #ifdef SK_DEBUG |
| 203 | mutable bool fResourcesReleased = false; |
| 204 | #endif |
Robert Phillips | ce0a2bf | 2019-04-02 13:37:34 -0400 | [diff] [blame] | 205 | |
| 206 | mutable bool fHasWork = false; |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | class GrVkSecondaryCommandBuffer; |
| 210 | |
| 211 | class GrVkPrimaryCommandBuffer : public GrVkCommandBuffer { |
| 212 | public: |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 213 | ~GrVkPrimaryCommandBuffer() override; |
| 214 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 215 | static GrVkPrimaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 216 | |
| 217 | void begin(const GrVkGpu* gpu); |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 218 | void end(GrVkGpu* gpu); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 219 | |
| 220 | // Begins render pass on this command buffer. The framebuffer from GrVkRenderTarget will be used |
| 221 | // in the render pass. |
| 222 | void beginRenderPass(const GrVkGpu* gpu, |
| 223 | const GrVkRenderPass* renderPass, |
Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 224 | const VkClearValue clearValues[], |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 225 | const GrVkRenderTarget& target, |
| 226 | const SkIRect& bounds, |
| 227 | bool forSecondaryCB); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 228 | void endRenderPass(const GrVkGpu* gpu); |
| 229 | |
| 230 | // Submits the SecondaryCommandBuffer into this command buffer. It is required that we are |
| 231 | // currently inside a render pass that is compatible with the one used to create the |
| 232 | // SecondaryCommandBuffer. |
| 233 | void executeCommands(const GrVkGpu* gpu, |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 234 | GrVkSecondaryCommandBuffer* secondaryBuffer); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 235 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 236 | // Commands that only work outside of a render pass |
| 237 | void clearColorImage(const GrVkGpu* gpu, |
| 238 | GrVkImage* image, |
| 239 | const VkClearColorValue* color, |
| 240 | uint32_t subRangeCount, |
| 241 | const VkImageSubresourceRange* subRanges); |
| 242 | |
egdaniel | 3d5d9ac | 2016-03-01 12:56:15 -0800 | [diff] [blame] | 243 | void clearDepthStencilImage(const GrVkGpu* gpu, |
| 244 | GrVkImage* image, |
| 245 | const VkClearDepthStencilValue* color, |
| 246 | uint32_t subRangeCount, |
| 247 | const VkImageSubresourceRange* subRanges); |
| 248 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 249 | void copyImage(const GrVkGpu* gpu, |
| 250 | GrVkImage* srcImage, |
| 251 | VkImageLayout srcLayout, |
| 252 | GrVkImage* dstImage, |
| 253 | VkImageLayout dstLayout, |
| 254 | uint32_t copyRegionCount, |
| 255 | const VkImageCopy* copyRegions); |
| 256 | |
egdaniel | 17b8925 | 2016-04-05 07:23:38 -0700 | [diff] [blame] | 257 | void blitImage(const GrVkGpu* gpu, |
egdaniel | b2df0c2 | 2016-05-13 11:30:37 -0700 | [diff] [blame] | 258 | const GrVkResource* srcResource, |
| 259 | VkImage srcImage, |
egdaniel | 17b8925 | 2016-04-05 07:23:38 -0700 | [diff] [blame] | 260 | VkImageLayout srcLayout, |
egdaniel | b2df0c2 | 2016-05-13 11:30:37 -0700 | [diff] [blame] | 261 | const GrVkResource* dstResource, |
| 262 | VkImage dstImage, |
egdaniel | 17b8925 | 2016-04-05 07:23:38 -0700 | [diff] [blame] | 263 | VkImageLayout dstLayout, |
| 264 | uint32_t blitRegionCount, |
| 265 | const VkImageBlit* blitRegions, |
| 266 | VkFilter filter); |
| 267 | |
egdaniel | b2df0c2 | 2016-05-13 11:30:37 -0700 | [diff] [blame] | 268 | void blitImage(const GrVkGpu* gpu, |
| 269 | const GrVkImage& srcImage, |
| 270 | const GrVkImage& dstImage, |
| 271 | uint32_t blitRegionCount, |
| 272 | const VkImageBlit* blitRegions, |
Greg Daniel | 6ecc911 | 2017-06-16 16:17:03 +0000 | [diff] [blame] | 273 | VkFilter filter); |
egdaniel | b2df0c2 | 2016-05-13 11:30:37 -0700 | [diff] [blame] | 274 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 275 | void copyImageToBuffer(const GrVkGpu* gpu, |
| 276 | GrVkImage* srcImage, |
| 277 | VkImageLayout srcLayout, |
| 278 | GrVkTransferBuffer* dstBuffer, |
| 279 | uint32_t copyRegionCount, |
| 280 | const VkBufferImageCopy* copyRegions); |
| 281 | |
| 282 | void copyBufferToImage(const GrVkGpu* gpu, |
| 283 | GrVkTransferBuffer* srcBuffer, |
| 284 | GrVkImage* dstImage, |
| 285 | VkImageLayout dstLayout, |
| 286 | uint32_t copyRegionCount, |
| 287 | const VkBufferImageCopy* copyRegions); |
| 288 | |
Greg Daniel | 6888c0d | 2017-08-25 11:55:50 -0400 | [diff] [blame] | 289 | void copyBuffer(GrVkGpu* gpu, |
| 290 | GrVkBuffer* srcBuffer, |
| 291 | GrVkBuffer* dstBuffer, |
| 292 | uint32_t regionCount, |
| 293 | const VkBufferCopy* regions); |
| 294 | |
jvanverth | a584de9 | 2016-06-30 09:10:52 -0700 | [diff] [blame] | 295 | void updateBuffer(GrVkGpu* gpu, |
| 296 | GrVkBuffer* dstBuffer, |
| 297 | VkDeviceSize dstOffset, |
| 298 | VkDeviceSize dataSize, |
| 299 | const void* data); |
| 300 | |
egdaniel | 52ad251 | 2016-08-04 12:50:01 -0700 | [diff] [blame] | 301 | void resolveImage(GrVkGpu* gpu, |
| 302 | const GrVkImage& srcImage, |
| 303 | const GrVkImage& dstImage, |
| 304 | uint32_t regionCount, |
| 305 | const VkImageResolve* regions); |
| 306 | |
Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 307 | void submitToQueue(const GrVkGpu* gpu, VkQueue queue, GrVkGpu::SyncQueue sync, |
Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 308 | SkTArray<GrVkSemaphore::Resource*>& signalSemaphores, |
| 309 | SkTArray<GrVkSemaphore::Resource*>& waitSemaphores); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 310 | bool finished(const GrVkGpu* gpu) const; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 311 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 312 | void recycleSecondaryCommandBuffers(); |
| 313 | |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 314 | #ifdef SK_TRACE_VK_RESOURCES |
| 315 | void dumpInfo() const override { |
| 316 | SkDebugf("GrVkPrimaryCommandBuffer: %d (%d refs)\n", fCmdBuffer, this->getRefCnt()); |
| 317 | } |
| 318 | #endif |
| 319 | |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 320 | private: |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 321 | explicit GrVkPrimaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) |
| 322 | : INHERITED(cmdBuffer, cmdPool) |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 323 | , fSubmitFence(VK_NULL_HANDLE) {} |
| 324 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 325 | void onFreeGPUData(GrVkGpu* gpu) const override; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 326 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 327 | void onAbandonGPUData() const override; |
| 328 | |
| 329 | void onReleaseResources(GrVkGpu* gpu) override; |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 330 | |
| 331 | SkTArray<GrVkSecondaryCommandBuffer*, true> fSecondaryCommandBuffers; |
| 332 | VkFence fSubmitFence; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 333 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 334 | typedef GrVkCommandBuffer INHERITED; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 335 | }; |
| 336 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 337 | class GrVkSecondaryCommandBuffer : public GrVkCommandBuffer { |
| 338 | public: |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 339 | static GrVkSecondaryCommandBuffer* Create(const GrVkGpu* gpu, GrVkCommandPool* cmdPool); |
Greg Daniel | 070cbaf | 2019-01-03 17:35:54 -0500 | [diff] [blame] | 340 | // Used for wrapping an external secondary command buffer. |
| 341 | static GrVkSecondaryCommandBuffer* Create(VkCommandBuffer externalSecondaryCB); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 342 | |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 343 | void begin(const GrVkGpu* gpu, const GrVkFramebuffer* framebuffer, |
| 344 | const GrVkRenderPass* compatibleRenderPass); |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 345 | void end(GrVkGpu* gpu); |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 346 | |
Greg Daniel | 64cc9aa | 2018-10-19 13:54:56 -0400 | [diff] [blame] | 347 | VkCommandBuffer vkCommandBuffer() { return fCmdBuffer; } |
| 348 | |
jvanverth | 7ec9241 | 2016-07-06 09:24:57 -0700 | [diff] [blame] | 349 | #ifdef SK_TRACE_VK_RESOURCES |
| 350 | void dumpInfo() const override { |
| 351 | SkDebugf("GrVkSecondaryCommandBuffer: %d (%d refs)\n", fCmdBuffer, this->getRefCnt()); |
| 352 | } |
| 353 | #endif |
| 354 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 355 | private: |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 356 | explicit GrVkSecondaryCommandBuffer(VkCommandBuffer cmdBuffer, GrVkCommandPool* cmdPool) |
| 357 | : INHERITED(cmdBuffer, cmdPool) {} |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 358 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 359 | void onFreeGPUData(GrVkGpu* gpu) const override {} |
| 360 | |
| 361 | void onAbandonGPUData() const override {} |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 362 | |
egdaniel | 9a6cf80 | 2016-06-08 08:22:05 -0700 | [diff] [blame] | 363 | friend class GrVkPrimaryCommandBuffer; |
| 364 | |
| 365 | typedef GrVkCommandBuffer INHERITED; |
| 366 | }; |
Greg Daniel | 164a9f0 | 2016-02-22 09:56:40 -0500 | [diff] [blame] | 367 | |
| 368 | #endif |