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 | } |
| 84 | #endif |
Chris Dalton | 4386ad1 | 2020-02-19 16:42:06 -0700 | [diff] [blame] | 85 | |
| 86 | fDrawPipelineStatus = DrawPipelineStatus::kOk; |
| 87 | } |
| 88 | |
| 89 | void GrOpsRenderPass::drawMeshes(const GrProgramInfo& programInfo, const GrMesh meshes[], |
| 90 | int meshCount) { |
| 91 | if (DrawPipelineStatus::kOk != fDrawPipelineStatus) { |
| 92 | SkASSERT(DrawPipelineStatus::kNotConfigured != fDrawPipelineStatus); |
| 93 | this->gpu()->stats()->incNumFailedDraws(); |
| 94 | return; |
| 95 | } |
| 96 | |
| 97 | #ifdef SK_DEBUG |
| 98 | if (int numDynamicStateArrays = programInfo.numDynamicStateArrays()) { |
| 99 | SkASSERT(meshCount == numDynamicStateArrays); |
| 100 | } |
| 101 | for (int i = 0; i < meshCount; ++i) { |
| 102 | SkASSERT(programInfo.primProc().hasVertexAttributes() == |
| 103 | SkToBool(meshes[i].vertexBuffer())); |
| 104 | SkASSERT(programInfo.primProc().hasInstanceAttributes() == |
| 105 | SkToBool(meshes[i].instanceBuffer())); |
| 106 | if (GrPrimitiveRestart::kYes == meshes[i].primitiveRestart()) { |
| 107 | SkASSERT(this->gpu()->caps()->usePrimitiveRestart()); |
| 108 | } |
| 109 | } |
| 110 | #endif |
| 111 | |
| 112 | if (meshCount) { |
| 113 | this->onDrawMeshes(programInfo, meshes, meshCount); |
| 114 | } |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 115 | } |