egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 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 | |
Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 8 | #include "src/gpu/GrOpsRenderPass.h" |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "include/core/SkRect.h" |
| 11 | #include "include/gpu/GrContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "src/gpu/GrCaps.h" |
| 13 | #include "src/gpu/GrContextPriv.h" |
| 14 | #include "src/gpu/GrFixedClip.h" |
| 15 | #include "src/gpu/GrGpu.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 16 | #include "src/gpu/GrPrimitiveProcessor.h" |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 17 | #include "src/gpu/GrProgramInfo.h" |
Brian Salomon | 201cdbb | 2019-08-14 17:00:30 -0400 | [diff] [blame] | 18 | #include "src/gpu/GrRenderTarget.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 19 | #include "src/gpu/GrRenderTargetPriv.h" |
Chris Dalton | eb694b7 | 2020-03-16 09:25:50 -0600 | [diff] [blame] | 20 | #include "src/gpu/GrSimpleMesh.h" |
Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 21 | #include "src/gpu/GrTexturePriv.h" |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 22 | |
Chris Dalton | 2c3e169 | 2020-03-20 12:32:55 -0600 | [diff] [blame] | 23 | void GrOpsRenderPass::begin() { |
| 24 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
| 25 | #ifdef SK_DEBUG |
| 26 | fScissorStatus = DynamicStateStatus::kDisabled; |
| 27 | fTextureBindingStatus = DynamicStateStatus::kDisabled; |
| 28 | fHasIndexBuffer = false; |
| 29 | fInstanceBufferStatus = DynamicStateStatus::kDisabled; |
| 30 | fVertexBufferStatus = DynamicStateStatus::kDisabled; |
| 31 | #endif |
| 32 | this->onBegin(); |
| 33 | } |
| 34 | |
| 35 | void GrOpsRenderPass::end() { |
| 36 | this->onEnd(); |
Chris Dalton | b60c8a2 | 2020-03-31 17:24:22 -0600 | [diff] [blame] | 37 | this->resetActiveBuffers(); |
Chris Dalton | 2c3e169 | 2020-03-20 12:32:55 -0600 | [diff] [blame] | 38 | } |
| 39 | |
Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 40 | void GrOpsRenderPass::clear(const GrFixedClip& clip, const SkPMColor4f& color) { |
Robert Phillips | 4912d90 | 2018-04-27 12:09:35 -0400 | [diff] [blame] | 41 | SkASSERT(fRenderTarget); |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 42 | // A clear at this level will always be a true clear, so make sure clears were not supposed to |
| 43 | // be redirected to draws instead |
| 44 | SkASSERT(!this->gpu()->caps()->performColorClearsAsDraws()); |
| 45 | SkASSERT(!clip.scissorEnabled() || !this->gpu()->caps()->performPartialClearsAsDraws()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 46 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 47 | this->onClear(clip, color); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 50 | void GrOpsRenderPass::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) { |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 51 | // As above, make sure the stencil clear wasn't supposed to be a draw rect with stencil settings |
| 52 | SkASSERT(!this->gpu()->caps()->performStencilClearsAsDraws()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 53 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 54 | this->onClearStencilClip(clip, insideStencilMask); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 57 | void GrOpsRenderPass::executeDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler> drawable) { |
| 58 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
| 59 | this->onExecuteDrawable(std::move(drawable)); |
| 60 | } |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 61 | |
Chris Dalton | aa0e45c | 2020-03-16 10:05:11 -0600 | [diff] [blame] | 62 | void GrOpsRenderPass::bindPipeline(const GrProgramInfo& programInfo, const SkRect& drawBounds) { |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 63 | #ifdef SK_DEBUG |
Chris Dalton | 56c09f0 | 2020-03-13 17:30:03 -0600 | [diff] [blame] | 64 | // Both the 'programInfo' and this renderPass have an origin. Since they come from the same |
| 65 | // place (i.e., the target renderTargetProxy) they had best agree. |
| 66 | SkASSERT(programInfo.origin() == fOrigin); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 67 | if (programInfo.primProc().hasInstanceAttributes()) { |
Chris Dalton | a77cdee | 2020-04-03 14:50:43 -0600 | [diff] [blame] | 68 | SkASSERT(this->gpu()->caps()->drawInstancedSupport()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 69 | } |
| 70 | if (programInfo.pipeline().usesConservativeRaster()) { |
| 71 | SkASSERT(this->gpu()->caps()->conservativeRasterSupport()); |
| 72 | // Conservative raster, by default, only supports triangles. Implementations can |
| 73 | // optionally indicate that they also support points and lines, but we don't currently |
| 74 | // query or track that info. |
| 75 | SkASSERT(GrIsPrimTypeTris(programInfo.primitiveType())); |
| 76 | } |
| 77 | if (programInfo.pipeline().isWireframe()) { |
| 78 | SkASSERT(this->gpu()->caps()->wireframeSupport()); |
| 79 | } |
Chris Dalton | 3d28b6a | 2020-04-13 11:12:28 -0600 | [diff] [blame] | 80 | if (this->gpu()->caps()->twoSidedStencilRefsAndMasksMustMatch() && |
| 81 | programInfo.pipeline().isStencilEnabled()) { |
| 82 | const GrUserStencilSettings* stencil = programInfo.pipeline().getUserStencil(); |
| 83 | if (stencil->isTwoSided(programInfo.pipeline().hasStencilClip())) { |
| 84 | SkASSERT(stencil->fCCWFace.fRef == stencil->fCWFace.fRef); |
| 85 | SkASSERT(stencil->fCCWFace.fTestMask == stencil->fCWFace.fTestMask); |
| 86 | SkASSERT(stencil->fCCWFace.fWriteMask == stencil->fCWFace.fWriteMask); |
| 87 | } |
| 88 | } |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 89 | if (GrPrimitiveType::kPatches == programInfo.primitiveType()) { |
| 90 | SkASSERT(this->gpu()->caps()->shaderCaps()->tessellationSupport()); |
| 91 | } |
Robert Phillips | 2d8a95e | 2019-10-10 12:50:22 -0400 | [diff] [blame] | 92 | programInfo.checkAllInstantiated(); |
| 93 | programInfo.checkMSAAAndMIPSAreResolved(); |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame] | 94 | #endif |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 95 | |
Chris Dalton | b60c8a2 | 2020-03-31 17:24:22 -0600 | [diff] [blame] | 96 | this->resetActiveBuffers(); |
| 97 | |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 98 | if (programInfo.primProc().numVertexAttributes() > this->gpu()->caps()->maxVertexAttributes()) { |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 99 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 100 | return; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 101 | } |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 102 | |
| 103 | if (!this->onBindPipeline(programInfo, drawBounds)) { |
| 104 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 105 | return; |
| 106 | } |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 107 | |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 108 | #ifdef SK_DEBUG |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 109 | GrProcessor::CustomFeatures processorFeatures = programInfo.requestedFeatures(); |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 110 | if (GrProcessor::CustomFeatures::kSampleLocations & processorFeatures) { |
| 111 | // Verify we always have the same sample pattern key, regardless of graphics state. |
| 112 | SkASSERT(this->gpu()->findOrAssignSamplePatternKey(fRenderTarget) |
| 113 | == fRenderTarget->renderTargetPriv().getSamplePatternKey()); |
| 114 | } |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 115 | fScissorStatus = (programInfo.pipeline().isScissorTestEnabled()) ? |
| 116 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
| 117 | bool hasTextures = (programInfo.primProc().numTextureSamplers() > 0); |
| 118 | if (!hasTextures) { |
| 119 | programInfo.pipeline().visitProxies([&hasTextures](GrSurfaceProxy*, GrMipMapped) { |
| 120 | hasTextures = true; |
| 121 | }); |
| 122 | } |
| 123 | fTextureBindingStatus = (hasTextures) ? |
| 124 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 125 | fHasIndexBuffer = false; |
| 126 | fInstanceBufferStatus = (programInfo.primProc().hasInstanceAttributes()) ? |
| 127 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
| 128 | fVertexBufferStatus = (programInfo.primProc().hasVertexAttributes()) ? |
| 129 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 130 | #endif |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 131 | |
| 132 | fDrawPipelineStatus = DrawPipelineStatus::kOk; |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 133 | fXferBarrierType = programInfo.pipeline().xferBarrierType(fRenderTarget->asTexture(), |
| 134 | *this->gpu()->caps()); |
| 135 | } |
| 136 | |
| 137 | void GrOpsRenderPass::setScissorRect(const SkIRect& scissor) { |
| 138 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 139 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 140 | return; |
| 141 | } |
| 142 | SkASSERT(DynamicStateStatus::kDisabled != fScissorStatus); |
| 143 | this->onSetScissorRect(scissor); |
| 144 | SkDEBUGCODE(fScissorStatus = DynamicStateStatus::kConfigured); |
| 145 | } |
| 146 | |
Chris Dalton | db20afc | 2020-03-05 12:13:53 -0700 | [diff] [blame] | 147 | void GrOpsRenderPass::bindTextures(const GrPrimitiveProcessor& primProc, |
| 148 | const GrSurfaceProxy* const primProcTextures[], |
| 149 | const GrPipeline& pipeline) { |
Chris Dalton | 1b1b0d5 | 2020-03-03 12:00:59 -0700 | [diff] [blame] | 150 | #ifdef SK_DEBUG |
| 151 | SkASSERT((primProc.numTextureSamplers() > 0) == SkToBool(primProcTextures)); |
| 152 | for (int i = 0; i < primProc.numTextureSamplers(); ++i) { |
Chris Dalton | 3bf2f3a | 2020-03-17 11:48:23 -0600 | [diff] [blame] | 153 | const auto& sampler = primProc.textureSampler(i); |
| 154 | const GrSurfaceProxy* proxy = primProcTextures[i]; |
| 155 | SkASSERT(proxy); |
| 156 | SkASSERT(proxy->backendFormat() == sampler.backendFormat()); |
| 157 | SkASSERT(proxy->backendFormat().textureType() == sampler.backendFormat().textureType()); |
| 158 | |
| 159 | const GrTexture* tex = proxy->peekTexture(); |
| 160 | SkASSERT(tex); |
| 161 | if (GrSamplerState::Filter::kMipMap == sampler.samplerState().filter() && |
| 162 | (tex->width() != 1 || tex->height() != 1)) { |
| 163 | // There are some cases where we might be given a non-mipmapped texture with a mipmap |
| 164 | // filter. See skbug.com/7094. |
| 165 | SkASSERT(tex->texturePriv().mipMapped() != GrMipMapped::kYes || |
| 166 | !tex->texturePriv().mipMapsAreDirty()); |
| 167 | } |
Chris Dalton | 1b1b0d5 | 2020-03-03 12:00:59 -0700 | [diff] [blame] | 168 | } |
| 169 | #endif |
| 170 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 171 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 172 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 173 | return; |
| 174 | } |
Chris Dalton | 1b1b0d5 | 2020-03-03 12:00:59 -0700 | [diff] [blame] | 175 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 176 | // Don't assert on fTextureBindingStatus. onBindTextures() just turns into a no-op when there |
| 177 | // aren't any textures, and it's hard to tell from the GrPipeline whether there are any. For |
| 178 | // many clients it is easier to just always call this method. |
Chris Dalton | db20afc | 2020-03-05 12:13:53 -0700 | [diff] [blame] | 179 | if (!this->onBindTextures(primProc, primProcTextures, pipeline)) { |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 180 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 181 | return; |
| 182 | } |
Chris Dalton | 1b1b0d5 | 2020-03-03 12:00:59 -0700 | [diff] [blame] | 183 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 184 | SkDEBUGCODE(fTextureBindingStatus = DynamicStateStatus::kConfigured); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 187 | void GrOpsRenderPass::bindBuffers(const GrBuffer* indexBuffer, const GrBuffer* instanceBuffer, |
| 188 | const GrBuffer* vertexBuffer, GrPrimitiveRestart primRestart) { |
| 189 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 190 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 191 | return; |
| 192 | } |
| 193 | |
| 194 | #ifdef SK_DEBUG |
| 195 | if (indexBuffer) { |
| 196 | fHasIndexBuffer = true; |
| 197 | } |
| 198 | |
| 199 | SkASSERT((DynamicStateStatus::kDisabled == fInstanceBufferStatus) != SkToBool(instanceBuffer)); |
| 200 | if (instanceBuffer) { |
| 201 | fInstanceBufferStatus = DynamicStateStatus::kConfigured; |
| 202 | } |
| 203 | |
| 204 | SkASSERT((DynamicStateStatus::kDisabled == fVertexBufferStatus) != SkToBool(vertexBuffer)); |
| 205 | if (vertexBuffer) { |
| 206 | fVertexBufferStatus = DynamicStateStatus::kConfigured; |
| 207 | } |
| 208 | |
| 209 | if (GrPrimitiveRestart::kYes == primRestart) { |
| 210 | SkASSERT(this->gpu()->caps()->usePrimitiveRestart()); |
| 211 | } |
| 212 | #endif |
| 213 | |
| 214 | this->onBindBuffers(indexBuffer, instanceBuffer, vertexBuffer, primRestart); |
| 215 | } |
| 216 | |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 217 | bool GrOpsRenderPass::prepareToDraw() { |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 218 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 219 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 220 | this->gpu()->stats()->incNumFailedDraws(); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 221 | return false; |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 222 | } |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 223 | SkASSERT(DynamicStateStatus::kUninitialized != fScissorStatus); |
| 224 | SkASSERT(DynamicStateStatus::kUninitialized != fTextureBindingStatus); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 225 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 226 | if (kNone_GrXferBarrierType != fXferBarrierType) { |
| 227 | this->gpu()->xferBarrier(fRenderTarget, fXferBarrierType); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 228 | } |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 229 | return true; |
| 230 | } |
| 231 | |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 232 | void GrOpsRenderPass::draw(int vertexCount, int baseVertex) { |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 233 | if (!this->prepareToDraw()) { |
| 234 | return; |
| 235 | } |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 236 | SkASSERT(!fHasIndexBuffer); |
| 237 | SkASSERT(DynamicStateStatus::kConfigured != fInstanceBufferStatus); |
| 238 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 239 | this->onDraw(vertexCount, baseVertex); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 242 | void GrOpsRenderPass::drawIndexed(int indexCount, int baseIndex, uint16_t minIndexValue, |
| 243 | uint16_t maxIndexValue, int baseVertex) { |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 244 | if (!this->prepareToDraw()) { |
| 245 | return; |
| 246 | } |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 247 | SkASSERT(fHasIndexBuffer); |
| 248 | SkASSERT(DynamicStateStatus::kConfigured != fInstanceBufferStatus); |
| 249 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 250 | this->onDrawIndexed(indexCount, baseIndex, minIndexValue, maxIndexValue, baseVertex); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 253 | void GrOpsRenderPass::drawInstanced(int instanceCount, int baseInstance, int vertexCount, |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 254 | int baseVertex) { |
Chris Dalton | a77cdee | 2020-04-03 14:50:43 -0600 | [diff] [blame] | 255 | SkASSERT(this->gpu()->caps()->drawInstancedSupport()); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 256 | if (!this->prepareToDraw()) { |
| 257 | return; |
| 258 | } |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 259 | SkASSERT(!fHasIndexBuffer); |
| 260 | SkASSERT(DynamicStateStatus::kUninitialized != fInstanceBufferStatus); |
| 261 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 262 | this->onDrawInstanced(instanceCount, baseInstance, vertexCount, baseVertex); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 265 | void GrOpsRenderPass::drawIndexedInstanced(int indexCount, int baseIndex, int instanceCount, |
| 266 | int baseInstance, int baseVertex) { |
Chris Dalton | a77cdee | 2020-04-03 14:50:43 -0600 | [diff] [blame] | 267 | SkASSERT(this->gpu()->caps()->drawInstancedSupport()); |
Chris Dalton | 33db9fc | 2020-02-25 18:52:12 -0700 | [diff] [blame] | 268 | if (!this->prepareToDraw()) { |
| 269 | return; |
| 270 | } |
Chris Dalton | ded4370 | 2020-03-02 11:45:27 -0700 | [diff] [blame] | 271 | SkASSERT(fHasIndexBuffer); |
| 272 | SkASSERT(DynamicStateStatus::kUninitialized != fInstanceBufferStatus); |
| 273 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 274 | this->onDrawIndexedInstanced(indexCount, baseIndex, instanceCount, baseInstance, baseVertex); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 275 | } |
Chris Dalton | bb76842 | 2020-03-12 12:13:29 -0600 | [diff] [blame] | 276 | |
Chris Dalton | 03fdf6a | 2020-04-07 12:31:59 -0600 | [diff] [blame] | 277 | void GrOpsRenderPass::drawIndirect(const GrBuffer* drawIndirectBuffer, size_t bufferOffset, |
| 278 | int drawCount) { |
| 279 | SkASSERT(this->gpu()->caps()->drawInstancedSupport()); |
| 280 | SkASSERT(drawIndirectBuffer->isCpuBuffer() || |
| 281 | !static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->isMapped()); |
| 282 | if (!this->prepareToDraw()) { |
| 283 | return; |
| 284 | } |
| 285 | SkASSERT(!fHasIndexBuffer); |
| 286 | SkASSERT(DynamicStateStatus::kUninitialized != fInstanceBufferStatus); |
| 287 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 288 | if (!this->gpu()->caps()->nativeDrawIndirectSupport()) { |
| 289 | // Polyfill indirect draws with looping instanced calls. |
| 290 | SkASSERT(drawIndirectBuffer->isCpuBuffer()); |
| 291 | auto cpuIndirectBuffer = static_cast<const GrCpuBuffer*>(drawIndirectBuffer); |
| 292 | auto cmd = reinterpret_cast<const GrDrawIndirectCommand*>( |
| 293 | cpuIndirectBuffer->data() + bufferOffset); |
| 294 | auto end = cmd + drawCount; |
| 295 | for (; cmd != end; ++cmd) { |
| 296 | this->onDrawInstanced(cmd->fInstanceCount, cmd->fBaseInstance, cmd->fVertexCount, |
| 297 | cmd->fBaseVertex); |
| 298 | } |
| 299 | return; |
| 300 | } |
| 301 | this->onDrawIndirect(drawIndirectBuffer, bufferOffset, drawCount); |
| 302 | } |
| 303 | |
| 304 | void GrOpsRenderPass::drawIndexedIndirect(const GrBuffer* drawIndirectBuffer, size_t bufferOffset, |
| 305 | int drawCount) { |
| 306 | SkASSERT(this->gpu()->caps()->drawInstancedSupport()); |
| 307 | SkASSERT(drawIndirectBuffer->isCpuBuffer() || |
| 308 | !static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->isMapped()); |
| 309 | if (!this->prepareToDraw()) { |
| 310 | return; |
| 311 | } |
| 312 | SkASSERT(fHasIndexBuffer); |
| 313 | SkASSERT(DynamicStateStatus::kUninitialized != fInstanceBufferStatus); |
| 314 | SkASSERT(DynamicStateStatus::kUninitialized != fVertexBufferStatus); |
| 315 | if (!this->gpu()->caps()->nativeDrawIndirectSupport() || |
| 316 | this->gpu()->caps()->nativeDrawIndexedIndirectIsBroken()) { |
| 317 | // Polyfill indexedIndirect draws with looping indexedInstanced calls. |
| 318 | SkASSERT(drawIndirectBuffer->isCpuBuffer()); |
| 319 | auto cpuIndirectBuffer = static_cast<const GrCpuBuffer*>(drawIndirectBuffer); |
| 320 | auto cmd = reinterpret_cast<const GrDrawIndexedIndirectCommand*>( |
| 321 | cpuIndirectBuffer->data() + bufferOffset); |
| 322 | auto end = cmd + drawCount; |
| 323 | for (; cmd != end; ++cmd) { |
| 324 | this->onDrawIndexedInstanced(cmd->fIndexCount, cmd->fBaseIndex, cmd->fInstanceCount, |
| 325 | cmd->fBaseInstance, cmd->fBaseVertex); |
| 326 | } |
| 327 | return; |
| 328 | } |
| 329 | this->onDrawIndexedIndirect(drawIndirectBuffer, bufferOffset, drawCount); |
| 330 | } |
| 331 | |
Chris Dalton | bb76842 | 2020-03-12 12:13:29 -0600 | [diff] [blame] | 332 | void GrOpsRenderPass::drawIndexPattern(int patternIndexCount, int patternRepeatCount, |
| 333 | int maxPatternRepetitionsInIndexBuffer, |
| 334 | int patternVertexCount, int baseVertex) { |
| 335 | int baseRepetition = 0; |
| 336 | while (baseRepetition < patternRepeatCount) { |
| 337 | int repeatCount = std::min(patternRepeatCount - baseRepetition, |
| 338 | maxPatternRepetitionsInIndexBuffer); |
| 339 | int drawIndexCount = repeatCount * patternIndexCount; |
| 340 | // A patterned index buffer must contain indices in the range [0..vertexCount]. |
| 341 | int minIndexValue = 0; |
| 342 | int maxIndexValue = patternVertexCount * repeatCount - 1; |
| 343 | this->drawIndexed(drawIndexCount, 0, minIndexValue, maxIndexValue, |
| 344 | patternVertexCount * baseRepetition + baseVertex); |
| 345 | baseRepetition += repeatCount; |
| 346 | } |
| 347 | } |