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" |
| 16 | #include "src/gpu/GrMesh.h" |
| 17 | #include "src/gpu/GrPrimitiveProcessor.h" |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 18 | #include "src/gpu/GrProgramInfo.h" |
Brian Salomon | 201cdbb | 2019-08-14 17:00:30 -0400 | [diff] [blame] | 19 | #include "src/gpu/GrRenderTarget.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 20 | #include "src/gpu/GrRenderTargetPriv.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 | |
Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 23 | void GrOpsRenderPass::clear(const GrFixedClip& clip, const SkPMColor4f& color) { |
Robert Phillips | 4912d90 | 2018-04-27 12:09:35 -0400 | [diff] [blame] | 24 | SkASSERT(fRenderTarget); |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 25 | // A clear at this level will always be a true clear, so make sure clears were not supposed to |
| 26 | // be redirected to draws instead |
| 27 | SkASSERT(!this->gpu()->caps()->performColorClearsAsDraws()); |
| 28 | SkASSERT(!clip.scissorEnabled() || !this->gpu()->caps()->performPartialClearsAsDraws()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 29 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 30 | this->onClear(clip, color); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 31 | } |
| 32 | |
Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 33 | void GrOpsRenderPass::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) { |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 34 | // As above, make sure the stencil clear wasn't supposed to be a draw rect with stencil settings |
| 35 | SkASSERT(!this->gpu()->caps()->performStencilClearsAsDraws()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 36 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 37 | this->onClearStencilClip(clip, insideStencilMask); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 40 | void GrOpsRenderPass::executeDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler> drawable) { |
| 41 | fDrawPipelineStatus = DrawPipelineStatus::kNotConfigured; |
| 42 | this->onExecuteDrawable(std::move(drawable)); |
| 43 | } |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 44 | |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 45 | void GrOpsRenderPass::bindPipeline(const GrProgramInfo& programInfo, const SkRect& drawBounds) { |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 46 | #ifdef SK_DEBUG |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 47 | if (programInfo.primProc().hasInstanceAttributes()) { |
| 48 | SkASSERT(this->gpu()->caps()->instanceAttribSupport()); |
| 49 | } |
| 50 | if (programInfo.pipeline().usesConservativeRaster()) { |
| 51 | SkASSERT(this->gpu()->caps()->conservativeRasterSupport()); |
| 52 | // Conservative raster, by default, only supports triangles. Implementations can |
| 53 | // optionally indicate that they also support points and lines, but we don't currently |
| 54 | // query or track that info. |
| 55 | SkASSERT(GrIsPrimTypeTris(programInfo.primitiveType())); |
| 56 | } |
| 57 | if (programInfo.pipeline().isWireframe()) { |
| 58 | SkASSERT(this->gpu()->caps()->wireframeSupport()); |
| 59 | } |
| 60 | if (GrPrimitiveType::kPatches == programInfo.primitiveType()) { |
| 61 | SkASSERT(this->gpu()->caps()->shaderCaps()->tessellationSupport()); |
| 62 | } |
Robert Phillips | 2d8a95e | 2019-10-10 12:50:22 -0400 | [diff] [blame] | 63 | programInfo.checkAllInstantiated(); |
| 64 | programInfo.checkMSAAAndMIPSAreResolved(); |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame] | 65 | #endif |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 66 | |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 67 | if (programInfo.primProc().numVertexAttributes() > this->gpu()->caps()->maxVertexAttributes()) { |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 68 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 69 | return; |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 70 | } |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 71 | |
| 72 | if (!this->onBindPipeline(programInfo, drawBounds)) { |
| 73 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 74 | return; |
| 75 | } |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 76 | |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 77 | #ifdef SK_DEBUG |
Robert Phillips | 901aff0 | 2019-10-08 12:32:56 -0400 | [diff] [blame] | 78 | GrProcessor::CustomFeatures processorFeatures = programInfo.requestedFeatures(); |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 79 | if (GrProcessor::CustomFeatures::kSampleLocations & processorFeatures) { |
| 80 | // Verify we always have the same sample pattern key, regardless of graphics state. |
| 81 | SkASSERT(this->gpu()->findOrAssignSamplePatternKey(fRenderTarget) |
| 82 | == fRenderTarget->renderTargetPriv().getSamplePatternKey()); |
| 83 | } |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 84 | fScissorStatus = (programInfo.pipeline().isScissorTestEnabled()) ? |
| 85 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
| 86 | bool hasTextures = (programInfo.primProc().numTextureSamplers() > 0); |
| 87 | if (!hasTextures) { |
| 88 | programInfo.pipeline().visitProxies([&hasTextures](GrSurfaceProxy*, GrMipMapped) { |
| 89 | hasTextures = true; |
| 90 | }); |
| 91 | } |
| 92 | fTextureBindingStatus = (hasTextures) ? |
| 93 | DynamicStateStatus::kUninitialized : DynamicStateStatus::kDisabled; |
| 94 | fHasVertexAttributes = programInfo.primProc().hasVertexAttributes(); |
| 95 | fHasInstanceAttributes = programInfo.primProc().hasInstanceAttributes(); |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 96 | #endif |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 97 | |
| 98 | fDrawPipelineStatus = DrawPipelineStatus::kOk; |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 99 | fXferBarrierType = programInfo.pipeline().xferBarrierType(fRenderTarget->asTexture(), |
| 100 | *this->gpu()->caps()); |
| 101 | } |
| 102 | |
| 103 | void GrOpsRenderPass::setScissorRect(const SkIRect& scissor) { |
| 104 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 105 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 106 | return; |
| 107 | } |
| 108 | SkASSERT(DynamicStateStatus::kDisabled != fScissorStatus); |
| 109 | this->onSetScissorRect(scissor); |
| 110 | SkDEBUGCODE(fScissorStatus = DynamicStateStatus::kConfigured); |
| 111 | } |
| 112 | |
| 113 | void GrOpsRenderPass::bindTextures(const GrPrimitiveProcessor& primProc, const GrPipeline& pipeline, |
| 114 | const GrSurfaceProxy* const primProcTextures[]) { |
| 115 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 116 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 117 | return; |
| 118 | } |
| 119 | SkASSERT((primProc.numTextureSamplers() > 0) == SkToBool(primProcTextures)); |
| 120 | // Don't assert on fTextureBindingStatus. onBindTextures() just turns into a no-op when there |
| 121 | // aren't any textures, and it's hard to tell from the GrPipeline whether there are any. For |
| 122 | // many clients it is easier to just always call this method. |
| 123 | if (!this->onBindTextures(primProc, pipeline, primProcTextures)) { |
| 124 | fDrawPipelineStatus = DrawPipelineStatus::kFailedToBind; |
| 125 | return; |
| 126 | } |
| 127 | SkDEBUGCODE(fTextureBindingStatus = DynamicStateStatus::kConfigured); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | void GrOpsRenderPass::drawMeshes(const GrProgramInfo& programInfo, const GrMesh meshes[], |
| 131 | int meshCount) { |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 132 | if (programInfo.hasFixedScissor()) { |
| 133 | this->setScissorRect(programInfo.fixedScissor()); |
| 134 | } |
| 135 | if (!programInfo.hasDynamicPrimProcTextures()) { |
| 136 | auto primProcTextures = (programInfo.hasFixedPrimProcTextures()) ? |
| 137 | programInfo.fixedPrimProcTextures() : nullptr; |
| 138 | this->bindTextures(programInfo.primProc(), programInfo.pipeline(), primProcTextures); |
| 139 | } |
| 140 | for (int i = 0; i < meshCount; ++i) { |
| 141 | if (programInfo.hasDynamicScissors()) { |
| 142 | this->setScissorRect(programInfo.dynamicScissor(i)); |
| 143 | } |
| 144 | if (programInfo.hasDynamicPrimProcTextures()) { |
| 145 | this->bindTextures(programInfo.primProc(), programInfo.pipeline(), |
| 146 | programInfo.dynamicPrimProcTextures(i)); |
| 147 | } |
| 148 | this->drawMesh(programInfo.primitiveType(), meshes[i]); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void GrOpsRenderPass::drawMesh(GrPrimitiveType primitiveType, const GrMesh& mesh) { |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 153 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 154 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 155 | this->gpu()->stats()->incNumFailedDraws(); |
| 156 | return; |
| 157 | } |
| 158 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 159 | SkASSERT(DynamicStateStatus::kUninitialized != fScissorStatus); |
| 160 | SkASSERT(DynamicStateStatus::kUninitialized != fTextureBindingStatus); |
| 161 | SkASSERT(SkToBool(mesh.vertexBuffer()) == fHasVertexAttributes); |
| 162 | SkASSERT(SkToBool(mesh.instanceBuffer()) == fHasInstanceAttributes); |
| 163 | SkASSERT(GrPrimitiveRestart::kNo == mesh.primitiveRestart() || |
| 164 | this->gpu()->caps()->usePrimitiveRestart()); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 165 | |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 166 | if (kNone_GrXferBarrierType != fXferBarrierType) { |
| 167 | this->gpu()->xferBarrier(fRenderTarget, fXferBarrierType); |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 168 | } |
Chris Dalton | 2e7ed26 | 2020-02-21 15:17:59 -0700 | [diff] [blame] | 169 | this->onDrawMesh(primitiveType, mesh); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 170 | } |