egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 1 | /* |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 2 | * Copyright 2015 Google Inc. |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 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 | |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 8 | #include "GrPipeline.h" |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 9 | |
bsalomon | eb1cb5c | 2015-05-22 08:01:09 -0700 | [diff] [blame] | 10 | #include "GrCaps.h" |
robertphillips | 55fdccc | 2016-06-06 06:16:20 -0700 | [diff] [blame] | 11 | #include "GrDrawContext.h" |
robertphillips | 498d7ac | 2015-10-30 10:11:30 -0700 | [diff] [blame] | 12 | #include "GrDrawTarget.h" |
joshualitt | 4973d9d | 2014-11-08 09:24:25 -0800 | [diff] [blame] | 13 | #include "GrGpu.h" |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 14 | #include "GrPipelineBuilder.h" |
egdaniel | b6cbc38 | 2014-11-13 11:00:34 -0800 | [diff] [blame] | 15 | #include "GrProcOptInfo.h" |
cdalton | 193d9cf | 2016-05-12 11:52:02 -0700 | [diff] [blame] | 16 | #include "GrRenderTargetPriv.h" |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 17 | #include "GrXferProcessor.h" |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 18 | |
joshualitt | 7441782 | 2015-08-07 11:42:16 -0700 | [diff] [blame] | 19 | #include "batches/GrBatch.h" |
| 20 | |
bsalomon | a387a11 | 2015-08-11 14:47:42 -0700 | [diff] [blame] | 21 | GrPipeline* GrPipeline::CreateAt(void* memory, const CreateArgs& args, |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 22 | GrXPOverridesForBatch* overrides) { |
bsalomon | a387a11 | 2015-08-11 14:47:42 -0700 | [diff] [blame] | 23 | const GrPipelineBuilder& builder = *args.fPipelineBuilder; |
bsalomon | c699873 | 2015-08-10 12:01:15 -0700 | [diff] [blame] | 24 | |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 25 | GrPipeline* pipeline = new (memory) GrPipeline; |
robertphillips | 55fdccc | 2016-06-06 06:16:20 -0700 | [diff] [blame] | 26 | GrRenderTarget* rt = args.fDrawContext->accessRenderTarget(); |
| 27 | pipeline->fRenderTarget.reset(rt); |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 28 | SkASSERT(pipeline->fRenderTarget); |
| 29 | pipeline->fScissorState = *args.fScissor; |
| 30 | if (builder.hasUserStencilSettings() || args.fHasStencilClip) { |
robertphillips | 55fdccc | 2016-06-06 06:16:20 -0700 | [diff] [blame] | 31 | const GrRenderTargetPriv& rtPriv = rt->renderTargetPriv(); |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 32 | pipeline->fStencilSettings.reset(*builder.getUserStencil(), args.fHasStencilClip, |
cdalton | 193d9cf | 2016-05-12 11:52:02 -0700 | [diff] [blame] | 33 | rtPriv.numStencilBits()); |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 34 | SkASSERT(!pipeline->fStencilSettings.usesWrapOp() || args.fCaps->stencilWrapOpsSupport()); |
| 35 | } |
| 36 | pipeline->fDrawFace = builder.getDrawFace(); |
| 37 | |
| 38 | pipeline->fFlags = 0; |
| 39 | if (builder.isHWAntialias()) { |
| 40 | pipeline->fFlags |= kHWAA_Flag; |
| 41 | } |
| 42 | if (builder.snapVerticesToPixelCenters()) { |
| 43 | pipeline->fFlags |= kSnapVertices_Flag; |
| 44 | } |
| 45 | if (builder.getDisableOutputConversionToSRGB()) { |
| 46 | pipeline->fFlags |= kDisableOutputConversionToSRGB_Flag; |
| 47 | } |
| 48 | if (builder.getAllowSRGBInputs()) { |
| 49 | pipeline->fFlags |= kAllowSRGBInputs_Flag; |
| 50 | } |
cdalton | 193d9cf | 2016-05-12 11:52:02 -0700 | [diff] [blame] | 51 | if (args.fHasStencilClip) { |
| 52 | pipeline->fFlags |= kHasStencilClip_Flag; |
| 53 | } |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 54 | |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 55 | // Create XferProcessor from DS's XPFactory |
robertphillips | 55fdccc | 2016-06-06 06:16:20 -0700 | [diff] [blame] | 56 | bool hasMixedSamples = args.fDrawContext->hasMixedSamples() && |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 57 | (builder.isHWAntialias() || !pipeline->fStencilSettings.isDisabled()); |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 58 | const GrXPFactory* xpFactory = builder.getXPFactory(); |
| 59 | SkAutoTUnref<GrXferProcessor> xferProcessor; |
| 60 | if (xpFactory) { |
ethannicholas | de4166a | 2015-11-30 08:57:38 -0800 | [diff] [blame] | 61 | xferProcessor.reset(xpFactory->createXferProcessor(args.fOpts, |
cdalton | 3ccf2e7 | 2016-05-06 09:41:16 -0700 | [diff] [blame] | 62 | hasMixedSamples, |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 63 | &args.fDstTexture, |
| 64 | *args.fCaps)); |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 65 | if (!xferProcessor) { |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 66 | pipeline->~GrPipeline(); |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 67 | return nullptr; |
| 68 | } |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 69 | } else { |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 70 | // This may return nullptr in the common case of src-over implemented using hw blending. |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 71 | xferProcessor.reset(GrPorterDuffXPFactory::CreateSrcOverXferProcessor( |
| 72 | *args.fCaps, |
ethannicholas | de4166a | 2015-11-30 08:57:38 -0800 | [diff] [blame] | 73 | args.fOpts, |
cdalton | 3ccf2e7 | 2016-05-06 09:41:16 -0700 | [diff] [blame] | 74 | hasMixedSamples, |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 75 | &args.fDstTexture)); |
| 76 | } |
cdalton | 3ccf2e7 | 2016-05-06 09:41:16 -0700 | [diff] [blame] | 77 | GrColor overrideColor = GrColor_ILLEGAL; |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 78 | if (args.fOpts.fColorPOI.firstEffectiveProcessorIndex() != 0) { |
| 79 | overrideColor = args.fOpts.fColorPOI.inputColorToFirstEffectiveProccesor(); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 80 | } |
| 81 | |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 82 | GrXferProcessor::OptFlags optFlags = GrXferProcessor::kNone_OptFlags; |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 83 | |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 84 | const GrXferProcessor* xpForOpts = xferProcessor ? xferProcessor.get() : |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 85 | &GrPorterDuffXPFactory::SimpleSrcOverXP(); |
| 86 | optFlags = xpForOpts->getOptimizations(args.fOpts, |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 87 | pipeline->fStencilSettings.doesWrite(), |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 88 | &overrideColor, |
| 89 | *args.fCaps); |
bsalomon | c8d3f57 | 2015-08-13 06:44:04 -0700 | [diff] [blame] | 90 | |
| 91 | // When path rendering the stencil settings are not always set on the GrPipelineBuilder |
| 92 | // so we must check the draw type. In cases where we will skip drawing we simply return a |
| 93 | // null GrPipeline. |
| 94 | if (GrXferProcessor::kSkipDraw_OptFlag & optFlags) { |
cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 95 | pipeline->~GrPipeline(); |
bsalomon | c8d3f57 | 2015-08-13 06:44:04 -0700 | [diff] [blame] | 96 | return nullptr; |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 97 | } |
bsalomon | b03c4a3 | 2014-11-20 09:56:11 -0800 | [diff] [blame] | 98 | |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 99 | // No need to have an override color if it isn't even going to be used. |
| 100 | if (SkToBool(GrXferProcessor::kIgnoreColor_OptFlag & optFlags)) { |
| 101 | overrideColor = GrColor_ILLEGAL; |
| 102 | } |
| 103 | |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 104 | pipeline->fXferProcessor.reset(xferProcessor); |
bsalomon | b03c4a3 | 2014-11-20 09:56:11 -0800 | [diff] [blame] | 105 | |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 106 | int firstColorProcessorIdx = args.fOpts.fColorPOI.firstEffectiveProcessorIndex(); |
egdaniel | 912b3d2 | 2014-11-17 07:45:53 -0800 | [diff] [blame] | 107 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 108 | // TODO: Once we can handle single or four channel input into coverage GrFragmentProcessors |
| 109 | // then we can use GrPipelineBuilder's coverageProcInfo (like color above) to set this initial |
| 110 | // information. |
| 111 | int firstCoverageProcessorIdx = 0; |
egdaniel | 912b3d2 | 2014-11-17 07:45:53 -0800 | [diff] [blame] | 112 | |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 113 | pipeline->adjustProgramFromOptimizations(builder, optFlags, args.fOpts.fColorPOI, |
| 114 | args.fOpts.fCoveragePOI, &firstColorProcessorIdx, |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 115 | &firstCoverageProcessorIdx); |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 116 | |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 117 | bool usesLocalCoords = false; |
| 118 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 119 | // Copy GrFragmentProcessors from GrPipelineBuilder to Pipeline |
| 120 | pipeline->fNumColorProcessors = builder.numColorFragmentProcessors() - firstColorProcessorIdx; |
| 121 | int numTotalProcessors = pipeline->fNumColorProcessors + |
| 122 | builder.numCoverageFragmentProcessors() - firstCoverageProcessorIdx; |
| 123 | pipeline->fFragmentProcessors.reset(numTotalProcessors); |
| 124 | int currFPIdx = 0; |
| 125 | for (int i = firstColorProcessorIdx; i < builder.numColorFragmentProcessors(); |
| 126 | ++i, ++currFPIdx) { |
| 127 | const GrFragmentProcessor* fp = builder.getColorFragmentProcessor(i); |
| 128 | pipeline->fFragmentProcessors[currFPIdx].reset(fp); |
joshualitt | 2fe7923 | 2015-08-05 12:02:27 -0700 | [diff] [blame] | 129 | usesLocalCoords = usesLocalCoords || fp->usesLocalCoords(); |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 130 | } |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 131 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 132 | for (int i = firstCoverageProcessorIdx; i < builder.numCoverageFragmentProcessors(); |
| 133 | ++i, ++currFPIdx) { |
| 134 | const GrFragmentProcessor* fp = builder.getCoverageFragmentProcessor(i); |
| 135 | pipeline->fFragmentProcessors[currFPIdx].reset(fp); |
joshualitt | 2fe7923 | 2015-08-05 12:02:27 -0700 | [diff] [blame] | 136 | usesLocalCoords = usesLocalCoords || fp->usesLocalCoords(); |
egdaniel | 9cf45bf | 2014-10-08 06:49:10 -0700 | [diff] [blame] | 137 | } |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 138 | |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 139 | // Setup info we need to pass to GrPrimitiveProcessors that are used with this GrPipeline. |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 140 | overrides->fFlags = 0; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 141 | if (!SkToBool(optFlags & GrXferProcessor::kIgnoreColor_OptFlag)) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 142 | overrides->fFlags |= GrXPOverridesForBatch::kReadsColor_Flag; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 143 | } |
| 144 | if (GrColor_ILLEGAL != overrideColor) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 145 | overrides->fFlags |= GrXPOverridesForBatch::kUseOverrideColor_Flag; |
| 146 | overrides->fOverrideColor = overrideColor; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 147 | } |
| 148 | if (!SkToBool(optFlags & GrXferProcessor::kIgnoreCoverage_OptFlag)) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 149 | overrides->fFlags |= GrXPOverridesForBatch::kReadsCoverage_Flag; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 150 | } |
| 151 | if (usesLocalCoords) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 152 | overrides->fFlags |= GrXPOverridesForBatch::kReadsLocalCoords_Flag; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 153 | } |
| 154 | if (SkToBool(optFlags & GrXferProcessor::kCanTweakAlphaForCoverage_OptFlag)) { |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 155 | overrides->fFlags |= GrXPOverridesForBatch::kCanTweakAlphaForCoverage_Flag; |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 156 | } |
bsalomon | 2d56303 | 2015-08-13 07:08:31 -0700 | [diff] [blame] | 157 | |
| 158 | GrXPFactory::InvariantBlendedColor blendedColor; |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 159 | if (xpFactory) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 160 | xpFactory->getInvariantBlendedColor(args.fOpts.fColorPOI, &blendedColor); |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 161 | } else { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 162 | GrPorterDuffXPFactory::SrcOverInvariantBlendedColor(args.fOpts.fColorPOI.color(), |
| 163 | args.fOpts.fColorPOI.validFlags(), |
| 164 | args.fOpts.fColorPOI.isOpaque(), |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 165 | &blendedColor); |
egdaniel | c4b7272 | 2015-11-23 13:20:41 -0800 | [diff] [blame] | 166 | } |
bsalomon | 2d56303 | 2015-08-13 07:08:31 -0700 | [diff] [blame] | 167 | if (blendedColor.fWillBlendWithDst) { |
ethannicholas | ff21032 | 2015-11-24 12:10:10 -0800 | [diff] [blame] | 168 | overrides->fFlags |= GrXPOverridesForBatch::kWillColorBlendWithDst_Flag; |
bsalomon | 2d56303 | 2015-08-13 07:08:31 -0700 | [diff] [blame] | 169 | } |
| 170 | |
bsalomon | c699873 | 2015-08-10 12:01:15 -0700 | [diff] [blame] | 171 | return pipeline; |
egdaniel | c064824 | 2014-09-22 13:17:02 -0700 | [diff] [blame] | 172 | } |
| 173 | |
robertphillips | 498d7ac | 2015-10-30 10:11:30 -0700 | [diff] [blame] | 174 | static void add_dependencies_for_processor(const GrFragmentProcessor* proc, GrRenderTarget* rt) { |
| 175 | for (int i = 0; i < proc->numChildProcessors(); ++i) { |
| 176 | // need to recurse |
| 177 | add_dependencies_for_processor(&proc->childProcessor(i), rt); |
| 178 | } |
| 179 | |
| 180 | for (int i = 0; i < proc->numTextures(); ++i) { |
| 181 | GrTexture* texture = proc->textureAccess(i).getTexture(); |
| 182 | SkASSERT(rt->getLastDrawTarget()); |
| 183 | rt->getLastDrawTarget()->addDependency(texture); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | void GrPipeline::addDependenciesTo(GrRenderTarget* rt) const { |
| 188 | for (int i = 0; i < fFragmentProcessors.count(); ++i) { |
| 189 | add_dependencies_for_processor(fFragmentProcessors[i].get(), rt); |
| 190 | } |
| 191 | |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 192 | const GrXferProcessor& xfer = this->getXferProcessor(); |
robertphillips | 498d7ac | 2015-10-30 10:11:30 -0700 | [diff] [blame] | 193 | |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 194 | for (int i = 0; i < xfer.numTextures(); ++i) { |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 195 | GrTexture* texture = xfer.textureAccess(i).getTexture(); |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 196 | SkASSERT(rt->getLastDrawTarget()); |
| 197 | rt->getLastDrawTarget()->addDependency(texture); |
robertphillips | 498d7ac | 2015-10-30 10:11:30 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 201 | void GrPipeline::adjustProgramFromOptimizations(const GrPipelineBuilder& pipelineBuilder, |
| 202 | GrXferProcessor::OptFlags flags, |
| 203 | const GrProcOptInfo& colorPOI, |
| 204 | const GrProcOptInfo& coveragePOI, |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 205 | int* firstColorProcessorIdx, |
| 206 | int* firstCoverageProcessorIdx) { |
egdaniel | 56cf6dc | 2015-11-30 10:15:58 -0800 | [diff] [blame] | 207 | fIgnoresCoverage = SkToBool(flags & GrXferProcessor::kIgnoreCoverage_OptFlag); |
egdaniel | a7dc0a8 | 2014-09-17 08:25:05 -0700 | [diff] [blame] | 208 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 209 | if ((flags & GrXferProcessor::kIgnoreColor_OptFlag) || |
| 210 | (flags & GrXferProcessor::kOverrideColor_OptFlag)) { |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 211 | *firstColorProcessorIdx = pipelineBuilder.numColorFragmentProcessors(); |
egdaniel | a7dc0a8 | 2014-09-17 08:25:05 -0700 | [diff] [blame] | 212 | } |
egdaniel | 9513143 | 2014-12-09 11:15:43 -0800 | [diff] [blame] | 213 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 214 | if (flags & GrXferProcessor::kIgnoreCoverage_OptFlag) { |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 215 | *firstCoverageProcessorIdx = pipelineBuilder.numCoverageFragmentProcessors(); |
egdaniel | a7dc0a8 | 2014-09-17 08:25:05 -0700 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 219 | //////////////////////////////////////////////////////////////////////////////// |
| 220 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 221 | bool GrPipeline::AreEqual(const GrPipeline& a, const GrPipeline& b, |
| 222 | bool ignoreCoordTransforms) { |
| 223 | SkASSERT(&a != &b); |
joshualitt | 8cab9a7 | 2015-07-16 09:13:50 -0700 | [diff] [blame] | 224 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 225 | if (a.getRenderTarget() != b.getRenderTarget() || |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 226 | a.fFragmentProcessors.count() != b.fFragmentProcessors.count() || |
| 227 | a.fNumColorProcessors != b.fNumColorProcessors || |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 228 | a.fScissorState != b.fScissorState || |
| 229 | a.fFlags != b.fFlags || |
| 230 | a.fStencilSettings != b.fStencilSettings || |
csmartdalton | afd6340 | 2016-07-06 09:47:38 -0700 | [diff] [blame] | 231 | a.fDrawFace != b.fDrawFace || |
| 232 | a.fIgnoresCoverage != b.fIgnoresCoverage) { |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 233 | return false; |
| 234 | } |
| 235 | |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 236 | // Most of the time both are nullptr |
| 237 | if (a.fXferProcessor.get() || b.fXferProcessor.get()) { |
| 238 | if (!a.getXferProcessor().isEqual(b.getXferProcessor())) { |
| 239 | return false; |
| 240 | } |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 241 | } |
| 242 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 243 | for (int i = 0; i < a.numFragmentProcessors(); i++) { |
| 244 | if (!a.getFragmentProcessor(i).isEqual(b.getFragmentProcessor(i), ignoreCoordTransforms)) { |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 245 | return false; |
| 246 | } |
| 247 | } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 248 | return true; |
| 249 | } |