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 | |
| 8 | #include "GrGpuCommandBuffer.h" |
| 9 | |
robertphillips | 28a838e | 2016-06-23 14:07:00 -0700 | [diff] [blame] | 10 | #include "GrCaps.h" |
Robert Phillips | be9aff2 | 2019-02-15 11:33:22 -0500 | [diff] [blame] | 11 | #include "GrContext.h" |
| 12 | #include "GrContextPriv.h" |
csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 13 | #include "GrFixedClip.h" |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 14 | #include "GrGpu.h" |
Brian Salomon | 2a55c8e | 2017-05-09 09:57:19 -0400 | [diff] [blame] | 15 | #include "GrMesh.h" |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 16 | #include "GrPrimitiveProcessor.h" |
| 17 | #include "GrRenderTarget.h" |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 18 | #include "GrRenderTargetPriv.h" |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 19 | #include "SkRect.h" |
| 20 | |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 21 | void GrGpuRTCommandBuffer::clear(const GrFixedClip& clip, const SkPMColor4f& color) { |
Robert Phillips | 4912d90 | 2018-04-27 12:09:35 -0400 | [diff] [blame] | 22 | SkASSERT(fRenderTarget); |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 23 | // A clear at this level will always be a true clear, so make sure clears were not supposed to |
| 24 | // be redirected to draws instead |
| 25 | SkASSERT(!this->gpu()->caps()->performColorClearsAsDraws()); |
| 26 | SkASSERT(!clip.scissorEnabled() || !this->gpu()->caps()->performPartialClearsAsDraws()); |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 27 | this->onClear(clip, color); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 28 | } |
| 29 | |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 30 | void GrGpuRTCommandBuffer::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) { |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 31 | // As above, make sure the stencil clear wasn't supposed to be a draw rect with stencil settings |
| 32 | SkASSERT(!this->gpu()->caps()->performStencilClearsAsDraws()); |
Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 33 | this->onClearStencilClip(clip, insideStencilMask); |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 34 | } |
| 35 | |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 36 | bool GrGpuRTCommandBuffer::draw(const GrPrimitiveProcessor& primProc, const GrPipeline& pipeline, |
| 37 | const GrPipeline::FixedDynamicState* fixedDynamicState, |
| 38 | const GrPipeline::DynamicStateArrays* dynamicStateArrays, |
| 39 | const GrMesh meshes[], int meshCount, const SkRect& bounds) { |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 40 | #ifdef SK_DEBUG |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 41 | SkASSERT(!primProc.hasInstanceAttributes() || this->gpu()->caps()->instanceAttribSupport()); |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 42 | for (int i = 0; i < meshCount; ++i) { |
Chris Dalton | b894c2b | 2017-06-14 12:39:19 -0600 | [diff] [blame] | 43 | SkASSERT(!GrPrimTypeRequiresGeometryShaderSupport(meshes[i].primitiveType()) || |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 44 | this->gpu()->caps()->shaderCaps()->geometryShaderSupport()); |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 45 | SkASSERT(primProc.hasVertexAttributes() == meshes[i].hasVertexData()); |
Chris Dalton | 906430d | 2019-02-27 18:16:59 -0700 | [diff] [blame] | 46 | SkASSERT(primProc.hasInstanceAttributes() == meshes[i].hasInstanceData()); |
Chris Dalton | bca46e2 | 2017-05-15 11:03:26 -0600 | [diff] [blame] | 47 | } |
| 48 | #endif |
Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 49 | SkASSERT(!pipeline.isScissorEnabled() || fixedDynamicState || |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 50 | (dynamicStateArrays && dynamicStateArrays->fScissorRects)); |
| 51 | |
Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 52 | if (pipeline.isBad()) { |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 53 | return false; |
| 54 | } |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame^] | 55 | #ifdef SK_DEBUG |
Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 56 | if (fixedDynamicState && fixedDynamicState->fPrimitiveProcessorTextures) { |
Robert Phillips | 7eeb74f | 2019-03-29 07:26:46 -0400 | [diff] [blame] | 57 | GrTextureProxy** processorProxies = fixedDynamicState->fPrimitiveProcessorTextures; |
Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 58 | for (int i = 0; i < primProc.numTextureSamplers(); ++i) { |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame^] | 59 | SkASSERT(processorProxies[i]->isInstantiated()); |
Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | if (dynamicStateArrays && dynamicStateArrays->fPrimitiveProcessorTextures) { |
| 63 | int n = primProc.numTextureSamplers() * meshCount; |
| 64 | const auto* textures = dynamicStateArrays->fPrimitiveProcessorTextures; |
| 65 | for (int i = 0; i < n; ++i) { |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame^] | 66 | SkASSERT(textures[i]->isInstantiated()); |
Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 67 | } |
Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 68 | SkASSERT(meshCount >= 1); |
| 69 | const GrTextureProxy* const* primProcProxies = |
| 70 | dynamicStateArrays->fPrimitiveProcessorTextures; |
| 71 | for (int i = 0; i < primProc.numTextureSamplers(); ++i) { |
| 72 | const GrBackendFormat& format = primProcProxies[i]->backendFormat(); |
| 73 | GrTextureType type = primProcProxies[i]->textureType(); |
| 74 | GrPixelConfig config = primProcProxies[i]->config(); |
| 75 | for (int j = 1; j < meshCount; ++j) { |
| 76 | const GrTextureProxy* testProxy = |
| 77 | primProcProxies[j*primProc.numTextureSamplers() + i]; |
| 78 | SkASSERT(testProxy->backendFormat() == format); |
| 79 | SkASSERT(testProxy->textureType() == type); |
| 80 | SkASSERT(testProxy->config() == config); |
| 81 | } |
| 82 | } |
Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 83 | } |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame^] | 84 | #endif |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 85 | |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 86 | if (primProc.numVertexAttributes() > this->gpu()->caps()->maxVertexAttributes()) { |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 87 | this->gpu()->stats()->incNumFailedDraws(); |
| 88 | return false; |
| 89 | } |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 90 | this->onDraw(primProc, pipeline, fixedDynamicState, dynamicStateArrays, meshes, meshCount, |
| 91 | bounds); |
Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 92 | #ifdef SK_DEBUG |
| 93 | GrProcessor::CustomFeatures processorFeatures = primProc.requestedFeatures(); |
| 94 | for (int i = 0; i < pipeline.numFragmentProcessors(); ++i) { |
| 95 | processorFeatures |= pipeline.getFragmentProcessor(i).requestedFeatures(); |
| 96 | } |
| 97 | processorFeatures |= pipeline.getXferProcessor().requestedFeatures(); |
| 98 | if (GrProcessor::CustomFeatures::kSampleLocations & processorFeatures) { |
| 99 | // Verify we always have the same sample pattern key, regardless of graphics state. |
| 100 | SkASSERT(this->gpu()->findOrAssignSamplePatternKey(fRenderTarget) |
| 101 | == fRenderTarget->renderTargetPriv().getSamplePatternKey()); |
| 102 | } |
| 103 | #endif |
egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 104 | return true; |
| 105 | } |