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 | #ifndef GrPipeline_DEFINED |
| 9 | #define GrPipeline_DEFINED |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 10 | |
egdaniel | b109ac2 | 2014-10-07 06:45:44 -0700 | [diff] [blame] | 11 | #include "GrColor.h" |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 12 | #include "GrFragmentProcessor.h" |
joshualitt | dbe1e6f | 2015-07-16 08:12:45 -0700 | [diff] [blame] | 13 | #include "GrNonAtomicRef.h" |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 14 | #include "GrPendingProgramElement.h" |
Brian Salomon | 5298dc8 | 2017-02-22 11:52:03 -0500 | [diff] [blame] | 15 | #include "GrProcessorSet.h" |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 16 | #include "GrProgramDesc.h" |
Brian Salomon | a4677b5 | 2017-05-04 12:39:56 -0400 | [diff] [blame] | 17 | #include "GrRect.h" |
Robert Phillips | c9c06d4 | 2017-06-12 10:58:31 -0400 | [diff] [blame] | 18 | #include "GrRenderTarget.h" |
csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 19 | #include "GrScissorState.h" |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 20 | #include "GrUserStencilSettings.h" |
csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 21 | #include "GrWindowRectsState.h" |
egdaniel | b109ac2 | 2014-10-07 06:45:44 -0700 | [diff] [blame] | 22 | #include "SkMatrix.h" |
| 23 | #include "SkRefCnt.h" |
robertphillips | 5fa7f30 | 2016-07-21 09:21:04 -0700 | [diff] [blame] | 24 | #include "effects/GrCoverageSetOpXP.h" |
| 25 | #include "effects/GrDisableColorXP.h" |
| 26 | #include "effects/GrPorterDuffXferProcessor.h" |
| 27 | #include "effects/GrSimpleTextureEffect.h" |
| 28 | |
Brian Salomon | 652ecb5 | 2017-01-17 12:39:53 -0500 | [diff] [blame] | 29 | class GrAppliedClip; |
joshualitt | 79f8fae | 2014-10-28 17:59:26 -0700 | [diff] [blame] | 30 | class GrDeviceCoordTexture; |
Brian Salomon | 25a8809 | 2016-12-01 09:36:50 -0500 | [diff] [blame] | 31 | class GrOp; |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 32 | class GrPipelineBuilder; |
Brian Salomon | 25a8809 | 2016-12-01 09:36:50 -0500 | [diff] [blame] | 33 | class GrRenderTargetContext; |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 34 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 35 | /** |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 36 | * Class that holds an optimized version of a GrPipelineBuilder. It is meant to be an immutable |
| 37 | * class, and contains all data needed to set the state for a gpu draw. |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 38 | */ |
cdalton | 4833f39 | 2016-02-02 22:46:16 -0800 | [diff] [blame] | 39 | class GrPipeline : public GrNonAtomicRef<GrPipeline> { |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 40 | public: |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 41 | /////////////////////////////////////////////////////////////////////////// |
| 42 | /// @name Creation |
| 43 | |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 44 | enum Flags { |
| 45 | /** |
| 46 | * Perform HW anti-aliasing. This means either HW FSAA, if supported by the render target, |
| 47 | * or smooth-line rendering if a line primitive is drawn and line smoothing is supported by |
| 48 | * the 3D API. |
| 49 | */ |
| 50 | kHWAntialias_Flag = 0x1, |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 51 | /** |
| 52 | * Modifies the vertex shader so that vertices will be positioned at pixel centers. |
| 53 | */ |
| 54 | kSnapVerticesToPixelCenters_Flag = 0x2, |
Brian Salomon | 611572c | 2017-04-28 08:57:12 -0400 | [diff] [blame] | 55 | /** Disables conversion to sRGB from linear when writing to a sRGB destination. */ |
| 56 | kDisableOutputConversionToSRGB_Flag = 0x4, |
| 57 | /** Allows conversion from sRGB to linear when reading from processor's sRGB texture. */ |
| 58 | kAllowSRGBInputs_Flag = 0x8, |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 59 | }; |
| 60 | |
Brian Salomon | 611572c | 2017-04-28 08:57:12 -0400 | [diff] [blame] | 61 | static uint32_t SRGBFlagsFromPaint(const GrPaint& paint) { |
| 62 | uint32_t flags = 0; |
| 63 | if (paint.getAllowSRGBInputs()) { |
| 64 | flags |= kAllowSRGBInputs_Flag; |
| 65 | } |
| 66 | if (paint.getDisableOutputConversionToSRGB()) { |
| 67 | flags |= kDisableOutputConversionToSRGB_Flag; |
| 68 | } |
| 69 | return flags; |
| 70 | } |
| 71 | |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 72 | enum ScissorState : bool { |
| 73 | kEnabled = true, |
| 74 | kDisabled = false |
| 75 | }; |
| 76 | |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 77 | struct InitArgs { |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 78 | uint32_t fFlags = 0; |
Brian Salomon | 48d1b4c | 2017-04-08 07:38:53 -0400 | [diff] [blame] | 79 | const GrProcessorSet* fProcessors = nullptr; // Must be finalized |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 80 | const GrUserStencilSettings* fUserStencil = &GrUserStencilSettings::kUnused; |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 81 | const GrAppliedClip* fAppliedClip = nullptr; |
Brian Salomon | b16e8ac | 2017-02-22 11:52:36 -0500 | [diff] [blame] | 82 | GrRenderTarget* fRenderTarget = nullptr; |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 83 | const GrCaps* fCaps = nullptr; |
Robert Phillips | 9bee2e5 | 2017-05-29 12:37:20 -0400 | [diff] [blame] | 84 | GrResourceProvider* fResourceProvider = nullptr; |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 85 | GrXferProcessor::DstProxy fDstProxy; |
bsalomon | a387a11 | 2015-08-11 14:47:42 -0700 | [diff] [blame] | 86 | }; |
| 87 | |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 88 | /** |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 89 | * Graphics state that can change dynamically without creating a new pipeline. |
| 90 | **/ |
| 91 | struct DynamicState { |
| 92 | // Overrides the scissor rectangle (if scissor is enabled in the pipeline). |
| 93 | // TODO: eventually this should be the only way to specify a scissor rectangle, as is the |
| 94 | // case with the simple constructor. |
| 95 | SkIRect fScissorRect; |
| 96 | }; |
| 97 | |
| 98 | /** |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 99 | * A Default constructed pipeline is unusable until init() is called. |
| 100 | **/ |
| 101 | GrPipeline() = default; |
egdaniel | b109ac2 | 2014-10-07 06:45:44 -0700 | [diff] [blame] | 102 | |
csmartdalton | 119fb2b | 2017-02-08 14:41:05 -0500 | [diff] [blame] | 103 | /** |
| 104 | * Creates a simple pipeline with default settings and no processors. The provided blend mode |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 105 | * must be "Porter Duff" (<= kLastCoeffMode). If using ScissorState::kEnabled, the caller must |
| 106 | * specify a scissor rectangle through the DynamicState struct. |
csmartdalton | 119fb2b | 2017-02-08 14:41:05 -0500 | [diff] [blame] | 107 | **/ |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 108 | GrPipeline(GrRenderTarget*, ScissorState, SkBlendMode); |
csmartdalton | 119fb2b | 2017-02-08 14:41:05 -0500 | [diff] [blame] | 109 | |
Brian Salomon | 6d4b65e | 2017-05-03 17:06:09 -0400 | [diff] [blame] | 110 | GrPipeline(const InitArgs& args) { this->init(args); } |
| 111 | |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 112 | /** (Re)initializes a pipeline. After initialization the pipeline can be used. */ |
Brian Salomon | e7d3048 | 2017-03-29 12:09:15 -0400 | [diff] [blame] | 113 | void init(const InitArgs&); |
Brian Salomon | b5cb683 | 2017-02-24 11:01:15 -0500 | [diff] [blame] | 114 | |
| 115 | /** True if the pipeline has been initialized. */ |
| 116 | bool isInitialized() const { return SkToBool(fRenderTarget.get()); } |
| 117 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 118 | /// @} |
| 119 | |
| 120 | /////////////////////////////////////////////////////////////////////////// |
| 121 | /// @name Comparisons |
| 122 | |
| 123 | /** |
joshualitt | 2fe7923 | 2015-08-05 12:02:27 -0700 | [diff] [blame] | 124 | * Returns true if these pipelines are equivalent. Coord transforms may be applied either on |
| 125 | * the GPU or the CPU. When we apply them on the CPU then the matrices need not agree in order |
| 126 | * to combine draws. Therefore we take a param that indicates whether coord transforms should be |
| 127 | * compared." |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 128 | */ |
bsalomon | 7312ff8 | 2016-09-12 08:55:38 -0700 | [diff] [blame] | 129 | static bool AreEqual(const GrPipeline& a, const GrPipeline& b); |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 130 | |
| 131 | /** |
Brian Salomon | 09d994e | 2016-12-21 11:14:46 -0500 | [diff] [blame] | 132 | * Allows a GrOp subclass to determine whether two GrOp instances can combine. This is a |
| 133 | * stricter test than isEqual because it also considers blend barriers when the two ops' |
| 134 | * bounds overlap |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 135 | */ |
| 136 | static bool CanCombine(const GrPipeline& a, const SkRect& aBounds, |
| 137 | const GrPipeline& b, const SkRect& bBounds, |
bsalomon | 7312ff8 | 2016-09-12 08:55:38 -0700 | [diff] [blame] | 138 | const GrCaps& caps) { |
| 139 | if (!AreEqual(a, b)) { |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 140 | return false; |
| 141 | } |
| 142 | if (a.xferBarrierType(caps)) { |
Brian Salomon | a4677b5 | 2017-05-04 12:39:56 -0400 | [diff] [blame] | 143 | return !GrRectsTouchOrOverlap(aBounds, bBounds); |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 144 | } |
| 145 | return true; |
| 146 | } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 147 | |
| 148 | /// @} |
| 149 | |
| 150 | /////////////////////////////////////////////////////////////////////////// |
bsalomon | 6be6f7c | 2015-02-26 13:05:21 -0800 | [diff] [blame] | 151 | /// @name GrFragmentProcessors |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 152 | |
Robert Phillips | d261e10 | 2017-06-23 12:37:20 -0400 | [diff] [blame] | 153 | // Make the renderTargetContext's GrOpList be dependent on any GrOpLists in this pipeline |
| 154 | void addDependenciesTo(GrOpList* recipient, const GrCaps&) const; |
bsalomon | 6be6f7c | 2015-02-26 13:05:21 -0800 | [diff] [blame] | 155 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 156 | int numColorFragmentProcessors() const { return fNumColorProcessors; } |
| 157 | int numCoverageFragmentProcessors() const { |
| 158 | return fFragmentProcessors.count() - fNumColorProcessors; |
| 159 | } |
| 160 | int numFragmentProcessors() const { return fFragmentProcessors.count(); } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 161 | |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 162 | const GrXferProcessor& getXferProcessor() const { |
Brian Salomon | d61c9d9 | 2017-04-10 10:54:25 -0400 | [diff] [blame] | 163 | if (fXferProcessor) { |
bsalomon | 2047b78 | 2015-12-21 13:12:54 -0800 | [diff] [blame] | 164 | return *fXferProcessor.get(); |
| 165 | } else { |
| 166 | // A null xp member means the common src-over case. GrXferProcessor's ref'ing |
| 167 | // mechanism is not thread safe so we do not hold a ref on this global. |
| 168 | return GrPorterDuffXPFactory::SimpleSrcOverXP(); |
| 169 | } |
| 170 | } |
egdaniel | 378092f | 2014-12-03 10:40:13 -0800 | [diff] [blame] | 171 | |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 172 | /** |
| 173 | * If the GrXferProcessor uses a texture to access the dst color, then this returns that |
| 174 | * texture and the offset to the dst contents within that texture. |
| 175 | */ |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 176 | GrTextureProxy* dstTextureProxy(SkIPoint* offset = nullptr) const { |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 177 | if (offset) { |
| 178 | *offset = fDstTextureOffset; |
| 179 | } |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 180 | return fDstTextureProxy.get(); |
| 181 | } |
| 182 | |
| 183 | GrTexture* peekDstTexture(SkIPoint* offset = nullptr) const { |
| 184 | if (GrTextureProxy* dstProxy = this->dstTextureProxy(offset)) { |
| 185 | return dstProxy->priv().peekTexture(); |
| 186 | } |
| 187 | |
| 188 | return nullptr; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 189 | } |
| 190 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 191 | const GrFragmentProcessor& getColorFragmentProcessor(int idx) const { |
| 192 | SkASSERT(idx < this->numColorFragmentProcessors()); |
| 193 | return *fFragmentProcessors[idx].get(); |
egdaniel | d9aa218 | 2014-10-09 13:47:05 -0700 | [diff] [blame] | 194 | } |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 195 | |
| 196 | const GrFragmentProcessor& getCoverageFragmentProcessor(int idx) const { |
| 197 | SkASSERT(idx < this->numCoverageFragmentProcessors()); |
| 198 | return *fFragmentProcessors[fNumColorProcessors + idx].get(); |
egdaniel | d9aa218 | 2014-10-09 13:47:05 -0700 | [diff] [blame] | 199 | } |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 200 | |
| 201 | const GrFragmentProcessor& getFragmentProcessor(int idx) const { |
| 202 | return *fFragmentProcessors[idx].get(); |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 203 | } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 204 | |
| 205 | /// @} |
| 206 | |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 207 | /** |
| 208 | * Retrieves the currently set render-target. |
| 209 | * |
| 210 | * @return The currently set render target. |
| 211 | */ |
bsalomon | 37dd331 | 2014-11-03 08:47:23 -0800 | [diff] [blame] | 212 | GrRenderTarget* getRenderTarget() const { return fRenderTarget.get(); } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 213 | |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 214 | const GrUserStencilSettings* getUserStencil() const { return fUserStencilSettings; } |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 215 | |
bsalomon | 3e79124 | 2014-12-17 13:43:13 -0800 | [diff] [blame] | 216 | const GrScissorState& getScissorState() const { return fScissorState; } |
joshualitt | 54e0c12 | 2014-11-19 09:38:51 -0800 | [diff] [blame] | 217 | |
csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 218 | const GrWindowRectsState& getWindowRectsState() const { return fWindowRectsState; } |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 219 | |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 220 | bool isHWAntialiasState() const { return SkToBool(fFlags & kHWAntialias_Flag); } |
| 221 | bool snapVerticesToPixelCenters() const { |
| 222 | return SkToBool(fFlags & kSnapVerticesToPixelCenters_Flag); |
| 223 | } |
brianosman | 64d094d | 2016-03-25 06:01:59 -0700 | [diff] [blame] | 224 | bool getDisableOutputConversionToSRGB() const { |
| 225 | return SkToBool(fFlags & kDisableOutputConversionToSRGB_Flag); |
| 226 | } |
brianosman | 898235c | 2016-04-06 07:38:23 -0700 | [diff] [blame] | 227 | bool getAllowSRGBInputs() const { |
| 228 | return SkToBool(fFlags & kAllowSRGBInputs_Flag); |
| 229 | } |
cdalton | 193d9cf | 2016-05-12 11:52:02 -0700 | [diff] [blame] | 230 | bool hasStencilClip() const { |
| 231 | return SkToBool(fFlags & kHasStencilClip_Flag); |
| 232 | } |
csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 233 | bool isStencilEnabled() const { |
| 234 | return SkToBool(fFlags & kStencilEnabled_Flag); |
| 235 | } |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 236 | bool isBad() const { return SkToBool(fFlags & kIsBad_Flag); } |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 237 | |
Robert Phillips | c9c06d4 | 2017-06-12 10:58:31 -0400 | [diff] [blame] | 238 | GrXferBarrierType xferBarrierType(const GrCaps& caps) const; |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 239 | |
Brian Salomon | 82dfd3d | 2017-06-14 12:30:35 -0400 | [diff] [blame] | 240 | static SkString DumpFlags(uint32_t flags) { |
| 241 | if (flags) { |
| 242 | SkString result; |
| 243 | if (flags & GrPipeline::kSnapVerticesToPixelCenters_Flag) { |
| 244 | result.append("Snap vertices to pixel center.\n"); |
| 245 | } |
| 246 | if (flags & GrPipeline::kHWAntialias_Flag) { |
| 247 | result.append("HW Antialiasing enabled.\n"); |
| 248 | } |
| 249 | if (flags & GrPipeline::kDisableOutputConversionToSRGB_Flag) { |
| 250 | result.append("Disable output conversion to sRGB.\n"); |
| 251 | } |
| 252 | if (flags & GrPipeline::kAllowSRGBInputs_Flag) { |
| 253 | result.append("Allow sRGB Inputs.\n"); |
| 254 | } |
| 255 | return result; |
| 256 | } |
| 257 | return SkString("No pipeline flags\n"); |
| 258 | } |
| 259 | |
bsalomon | ae59b77 | 2014-11-19 08:23:49 -0800 | [diff] [blame] | 260 | private: |
Robert Phillips | a91e0b7 | 2017-05-01 13:12:20 -0400 | [diff] [blame] | 261 | void markAsBad() { fFlags |= kIsBad_Flag; } |
| 262 | |
Brian Salomon | f87e2b9 | 2017-01-19 11:31:50 -0500 | [diff] [blame] | 263 | /** This is a continuation of the public "Flags" enum. */ |
Brian Salomon | 189098e7 | 2017-01-19 09:55:19 -0500 | [diff] [blame] | 264 | enum PrivateFlags { |
Brian Salomon | e23bffd | 2017-06-02 11:01:10 -0400 | [diff] [blame] | 265 | kHasStencilClip_Flag = 0x10, |
| 266 | kStencilEnabled_Flag = 0x20, |
| 267 | kIsBad_Flag = 0x40, |
bsalomon | 04ddf89 | 2014-11-19 12:36:22 -0800 | [diff] [blame] | 268 | }; |
| 269 | |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 270 | using RenderTarget = GrPendingIOResource<GrRenderTarget, kWrite_GrIOType>; |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 271 | using DstTextureProxy = GrPendingIOResource<GrTextureProxy, kRead_GrIOType>; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 272 | using PendingFragmentProcessor = GrPendingProgramElement<const GrFragmentProcessor>; |
| 273 | using FragmentProcessorArray = SkAutoSTArray<8, PendingFragmentProcessor>; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 274 | |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 275 | DstTextureProxy fDstTextureProxy; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 276 | SkIPoint fDstTextureOffset; |
| 277 | RenderTarget fRenderTarget; |
| 278 | GrScissorState fScissorState; |
| 279 | GrWindowRectsState fWindowRectsState; |
| 280 | const GrUserStencilSettings* fUserStencilSettings; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 281 | uint16_t fFlags; |
Brian Salomon | d61c9d9 | 2017-04-10 10:54:25 -0400 | [diff] [blame] | 282 | sk_sp<const GrXferProcessor> fXferProcessor; |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 283 | FragmentProcessorArray fFragmentProcessors; |
egdaniel | d9aa218 | 2014-10-09 13:47:05 -0700 | [diff] [blame] | 284 | |
bsalomon | ac856c9 | 2015-08-27 06:30:17 -0700 | [diff] [blame] | 285 | // This value is also the index in fFragmentProcessors where coverage processors begin. |
Brian Salomon | 18dfa98 | 2017-04-03 16:57:43 -0400 | [diff] [blame] | 286 | int fNumColorProcessors; |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 287 | |
egdaniel | 89af44a | 2014-09-26 06:15:04 -0700 | [diff] [blame] | 288 | typedef SkRefCnt INHERITED; |
egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 289 | }; |
| 290 | |
| 291 | #endif |