blob: 447a981f3a854e5205ee14fa7d1c700c3fb346bb [file] [log] [blame]
tomhudson@google.com93813632011-10-27 20:21:16 +00001/*
egdaniel8dd688b2015-01-22 10:16:09 -08002 * Copyright 2015 Google Inc.
tomhudson@google.com93813632011-10-27 20:21:16 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
egdaniel8dd688b2015-01-22 10:16:09 -08008#ifndef GrPipelineBuilder_DEFINED
9#define GrPipelineBuilder_DEFINED
tomhudson@google.com93813632011-10-27 20:21:16 +000010
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +000011#include "GrBlend.h"
bsalomoneb1cb5c2015-05-22 08:01:09 -070012#include "GrCaps.h"
joshualitt44701df2015-02-23 14:44:57 -080013#include "GrClip.h"
bsalomonf96ba022014-09-17 08:05:40 -070014#include "GrGpuResourceRef.h"
bsalomonae59b772014-11-19 08:23:49 -080015#include "GrFragmentStage.h"
egdanielb6cbc382014-11-13 11:00:34 -080016#include "GrProcOptInfo.h"
egdaniel89af44a2014-09-26 06:15:04 -070017#include "GrRenderTarget.h"
18#include "GrStencil.h"
egdaniel95131432014-12-09 11:15:43 -080019#include "GrXferProcessor.h"
egdaniel89af44a2014-09-26 06:15:04 -070020#include "SkMatrix.h"
egdaniel87509242014-12-17 13:37:13 -080021#include "effects/GrCoverageSetOpXP.h"
egdaniel080e6732014-12-22 07:35:52 -080022#include "effects/GrDisableColorXP.h"
egdaniel95131432014-12-09 11:15:43 -080023#include "effects/GrPorterDuffXferProcessor.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000024#include "effects/GrSimpleTextureEffect.h"
tomhudson@google.com93813632011-10-27 20:21:16 +000025
joshualitt5bf99f12015-03-13 11:47:42 -070026class GrBatch;
bsalomon4b91f762015-05-19 09:29:46 -070027class GrCaps;
egdaniel89af44a2014-09-26 06:15:04 -070028class GrPaint;
29class GrTexture;
egdaniel170f90b2014-09-16 12:54:40 -070030
egdaniel8dd688b2015-01-22 10:16:09 -080031class GrPipelineBuilder {
bsalomon@google.com2e3d1442012-03-26 20:33:54 +000032public:
egdaniel8dd688b2015-01-22 10:16:09 -080033 GrPipelineBuilder();
34
35 GrPipelineBuilder(const GrPipelineBuilder& pipelineBuilder) {
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +000036 SkDEBUGCODE(fBlockEffectRemovalCnt = 0;)
egdaniel8dd688b2015-01-22 10:16:09 -080037 *this = pipelineBuilder;
bsalomon@google.com46f7afb2012-01-18 19:51:55 +000038 }
39
egdaniel8dd688b2015-01-22 10:16:09 -080040 virtual ~GrPipelineBuilder();
bsalomon@google.com137f1342013-05-29 21:27:53 +000041
bsalomon@google.com52a5dcb2012-01-17 16:01:37 +000042 /**
egdaniel8dd688b2015-01-22 10:16:09 -080043 * Initializes the GrPipelineBuilder based on a GrPaint, view matrix and render target. Note
44 * that GrPipelineBuilder encompasses more than GrPaint. Aspects of GrPipelineBuilder that have
45 * no GrPaint equivalents are set to default values with the exception of vertex attribute state
46 * which is unmodified by this function and clipping which will be enabled.
bsalomon@google.comaf84e742012-10-05 13:23:24 +000047 */
joshualitt570d2f82015-02-25 13:19:48 -080048 void setFromPaint(const GrPaint&, GrRenderTarget*, const GrClip&);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000049
bsalomon@google.com2401ae82012-01-17 21:03:05 +000050 ///////////////////////////////////////////////////////////////////////////
bsalomon6be6f7c2015-02-26 13:05:21 -080051 /// @name Fragment Processors
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000052 ///
bsalomon6be6f7c2015-02-26 13:05:21 -080053 /// GrFragmentProcessors are used to compute per-pixel color and per-pixel fractional coverage.
54 /// There are two chains of FPs, one for color and one for coverage. The first FP in each
55 /// chain gets the initial color/coverage from the GrPrimitiveProcessor. It computes an output
56 /// color/coverage which is fed to the next FP in the chain. The last color and coverage FPs
57 /// feed their output to the GrXferProcessor which controls blending.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000058 ////
59
bsalomon6be6f7c2015-02-26 13:05:21 -080060 int numColorFragmentStages() const { return fColorStages.count(); }
61 int numCoverageFragmentStages() const { return fCoverageStages.count(); }
62 int numFragmentStages() const { return this->numColorFragmentStages() +
63 this->numCoverageFragmentStages(); }
egdaniel378092f2014-12-03 10:40:13 -080064
bsalomon6be6f7c2015-02-26 13:05:21 -080065 const GrFragmentStage& getColorFragmentStage(int idx) const { return fColorStages[idx]; }
66 const GrFragmentStage& getCoverageFragmentStage(int idx) const { return fCoverageStages[idx]; }
egdaniel080e6732014-12-22 07:35:52 -080067
joshualittb0a8a372014-09-23 09:50:21 -070068 const GrFragmentProcessor* addColorProcessor(const GrFragmentProcessor* effect) {
bsalomon49f085d2014-09-05 13:34:00 -070069 SkASSERT(effect);
joshualittb0a8a372014-09-23 09:50:21 -070070 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrFragmentStage, (effect));
egdanielb6cbc382014-11-13 11:00:34 -080071 fColorProcInfoValid = false;
jvanverth@google.com65eb4d52013-03-19 18:51:02 +000072 return effect;
73 }
skia.committer@gmail.com01c34ee2013-03-20 07:01:02 +000074
joshualittb0a8a372014-09-23 09:50:21 -070075 const GrFragmentProcessor* addCoverageProcessor(const GrFragmentProcessor* effect) {
bsalomon49f085d2014-09-05 13:34:00 -070076 SkASSERT(effect);
joshualittb0a8a372014-09-23 09:50:21 -070077 SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrFragmentStage, (effect));
egdanielb6cbc382014-11-13 11:00:34 -080078 fCoverageProcInfoValid = false;
bsalomon@google.comadc65362013-01-28 14:26:09 +000079 return effect;
80 }
81
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000082 /**
bsalomon@google.comc7818882013-03-20 19:19:53 +000083 * Creates a GrSimpleTextureEffect that uses local coords as texture coordinates.
tomhudson@google.com1e8f0162012-07-20 16:25:18 +000084 */
joshualittb0a8a372014-09-23 09:50:21 -070085 void addColorTextureProcessor(GrTexture* texture, const SkMatrix& matrix) {
86 this->addColorProcessor(GrSimpleTextureEffect::Create(texture, matrix))->unref();
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +000087 }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000088
joshualittb0a8a372014-09-23 09:50:21 -070089 void addCoverageTextureProcessor(GrTexture* texture, const SkMatrix& matrix) {
90 this->addCoverageProcessor(GrSimpleTextureEffect::Create(texture, matrix))->unref();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000091 }
92
joshualittb0a8a372014-09-23 09:50:21 -070093 void addColorTextureProcessor(GrTexture* texture,
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000094 const SkMatrix& matrix,
95 const GrTextureParams& params) {
joshualittb0a8a372014-09-23 09:50:21 -070096 this->addColorProcessor(GrSimpleTextureEffect::Create(texture, matrix, params))->unref();
97 }
98
99 void addCoverageTextureProcessor(GrTexture* texture,
100 const SkMatrix& matrix,
101 const GrTextureParams& params) {
102 this->addCoverageProcessor(GrSimpleTextureEffect::Create(texture, matrix, params))->unref();
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000103 }
tomhudson@google.com676e6602012-07-10 17:21:48 +0000104
robertphillips@google.com972265d2012-06-13 18:49:30 +0000105 /**
bsalomon6be6f7c2015-02-26 13:05:21 -0800106 * When this object is destroyed it will remove any color/coverage FPs from the pipeline builder
107 * that were added after its constructor.
robertphillips@google.com972265d2012-06-13 18:49:30 +0000108 */
bsalomon6be6f7c2015-02-26 13:05:21 -0800109 class AutoRestoreFragmentProcessors : public ::SkNoncopyable {
robertphillips@google.com972265d2012-06-13 18:49:30 +0000110 public:
bsalomon6be6f7c2015-02-26 13:05:21 -0800111 AutoRestoreFragmentProcessors()
egdaniel8dd688b2015-01-22 10:16:09 -0800112 : fPipelineBuilder(NULL)
bsalomon9b536522014-09-05 09:18:51 -0700113 , fColorEffectCnt(0)
114 , fCoverageEffectCnt(0) {}
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000115
bsalomon6be6f7c2015-02-26 13:05:21 -0800116 AutoRestoreFragmentProcessors(GrPipelineBuilder* ds)
egdaniel8dd688b2015-01-22 10:16:09 -0800117 : fPipelineBuilder(NULL)
bsalomon9b536522014-09-05 09:18:51 -0700118 , fColorEffectCnt(0)
119 , fCoverageEffectCnt(0) {
skia.committer@gmail.com5c493d52013-06-14 07:00:49 +0000120 this->set(ds);
robertphillips@google.comf09b87d2013-06-13 20:06:44 +0000121 }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000122
bsalomon6be6f7c2015-02-26 13:05:21 -0800123 ~AutoRestoreFragmentProcessors() { this->set(NULL); }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000124
egdaniel8dd688b2015-01-22 10:16:09 -0800125 void set(GrPipelineBuilder* ds);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000126
egdaniel8dd688b2015-01-22 10:16:09 -0800127 bool isSet() const { return SkToBool(fPipelineBuilder); }
bsalomon8af05232014-06-03 06:34:58 -0700128
robertphillips@google.com972265d2012-06-13 18:49:30 +0000129 private:
egdaniel8dd688b2015-01-22 10:16:09 -0800130 GrPipelineBuilder* fPipelineBuilder;
bsalomon9b536522014-09-05 09:18:51 -0700131 int fColorEffectCnt;
132 int fCoverageEffectCnt;
robertphillips@google.com972265d2012-06-13 18:49:30 +0000133 };
134
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000135 /// @}
136
137 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000138 /// @name Blending
139 ////
140
egdaniel89af44a2014-09-26 06:15:04 -0700141 /**
bsalomon6be6f7c2015-02-26 13:05:21 -0800142 * This function returns true if the render target destination pixel values will be read for
143 * blending during draw.
144 */
145 bool willBlendWithDst(const GrPrimitiveProcessor*) const;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000146
bsalomon6be6f7c2015-02-26 13:05:21 -0800147 /**
148 * Installs a GrXPFactory. This object controls how src color, fractional pixel coverage,
149 * and the dst color are blended.
150 */
151 const GrXPFactory* setXPFactory(const GrXPFactory* xpFactory) {
152 fXPFactory.reset(SkRef(xpFactory));
153 return xpFactory;
154 }
155
156 /**
157 * Sets a GrXPFactory that will ignore src color and perform a set operation between the draws
158 * output coverage and the destination. This is useful to render coverage masks as CSG.
159 */
160 void setCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCoverage = false) {
161 fXPFactory.reset(GrCoverageSetOpXPFactory::Create(regionOp, invertCoverage));
162 }
163
164 /**
165 * Sets a GrXPFactory that disables color writes to the destination. This is useful when
166 * rendering to the stencil buffer.
167 */
168 void setDisableColorXPFactory() {
169 fXPFactory.reset(GrDisableColorXPFactory::Create());
170 }
171
172 const GrXPFactory* getXPFactory() const {
173 if (!fXPFactory) {
174 fXPFactory.reset(GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode));
175 }
176 return fXPFactory.get();
177 }
178
179 /**
180 * Checks whether the xp will need a copy of the destination to correctly blend.
181 */
bsalomon4b91f762015-05-19 09:29:46 -0700182 bool willXPNeedDstCopy(const GrCaps& caps, const GrProcOptInfo& colorPOI,
bsalomon6be6f7c2015-02-26 13:05:21 -0800183 const GrProcOptInfo& coveragePOI) const;
joshualittd27f73e2014-12-29 07:43:36 -0800184
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000185 /// @}
186
bsalomon6be6f7c2015-02-26 13:05:21 -0800187
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000188 ///////////////////////////////////////////////////////////////////////////
189 /// @name Render Target
190 ////
191
192 /**
egdaniel89af44a2014-09-26 06:15:04 -0700193 * Retrieves the currently set render-target.
194 *
195 * @return The currently set render target.
196 */
bsalomon37dd3312014-11-03 08:47:23 -0800197 GrRenderTarget* getRenderTarget() const { return fRenderTarget.get(); }
egdaniel89af44a2014-09-26 06:15:04 -0700198
199 /**
bsalomon@google.comca432082013-01-23 19:53:46 +0000200 * Sets the render-target used at the next drawing call
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000201 *
202 * @param target The render target to set.
203 */
bsalomonae59b772014-11-19 08:23:49 -0800204 void setRenderTarget(GrRenderTarget* target) { fRenderTarget.reset(SkSafeRef(target)); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000205
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000206 /// @}
207
208 ///////////////////////////////////////////////////////////////////////////
209 /// @name Stencil
210 ////
211
egdaniel89af44a2014-09-26 06:15:04 -0700212 const GrStencilSettings& getStencil() const { return fStencilSettings; }
213
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000214 /**
215 * Sets the stencil settings to use for the next draw.
216 * Changing the clip has the side-effect of possibly zeroing
217 * out the client settable stencil bits. So multipass algorithms
218 * using stencil should not change the clip between passes.
219 * @param settings the stencil settings to use.
220 */
bsalomon04ddf892014-11-19 12:36:22 -0800221 void setStencil(const GrStencilSettings& settings) { fStencilSettings = settings; }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000222
223 /**
224 * Shortcut to disable stencil testing and ops.
225 */
bsalomon04ddf892014-11-19 12:36:22 -0800226 void disableStencil() { fStencilSettings.setDisabled(); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000227
bsalomon2ed5ef82014-07-07 08:44:05 -0700228 GrStencilSettings* stencil() { return &fStencilSettings; }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000229
bsalomon6be6f7c2015-02-26 13:05:21 -0800230 /**
231 * AutoRestoreStencil
232 *
233 * This simple struct saves and restores the stencil settings
234 */
235 class AutoRestoreStencil : public ::SkNoncopyable {
236 public:
237 AutoRestoreStencil() : fPipelineBuilder(NULL) {}
238
239 AutoRestoreStencil(GrPipelineBuilder* ds) : fPipelineBuilder(NULL) { this->set(ds); }
240
241 ~AutoRestoreStencil() { this->set(NULL); }
242
243 void set(GrPipelineBuilder* ds) {
244 if (fPipelineBuilder) {
245 fPipelineBuilder->setStencil(fStencilSettings);
246 }
247 fPipelineBuilder = ds;
248 if (ds) {
249 fStencilSettings = ds->getStencil();
250 }
251 }
252
253 bool isSet() const { return SkToBool(fPipelineBuilder); }
254
255 private:
256 GrPipelineBuilder* fPipelineBuilder;
257 GrStencilSettings fStencilSettings;
258 };
259
260
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000261 /// @}
262
263 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000264 /// @name State Flags
265 ////
tomhudson@google.com62b09682011-11-09 16:39:17 +0000266
egdaniel89af44a2014-09-26 06:15:04 -0700267 /**
268 * Flags that affect rendering. Controlled using enable/disableState(). All
269 * default to disabled.
270 */
bsalomond79c5492015-04-27 10:07:04 -0700271 enum Flags {
egdaniel89af44a2014-09-26 06:15:04 -0700272 /**
273 * Perform dithering. TODO: Re-evaluate whether we need this bit
274 */
bsalomond79c5492015-04-27 10:07:04 -0700275 kDither_Flag = 0x01,
egdaniel89af44a2014-09-26 06:15:04 -0700276 /**
277 * Perform HW anti-aliasing. This means either HW FSAA, if supported by the render target,
278 * or smooth-line rendering if a line primitive is drawn and line smoothing is supported by
279 * the 3D API.
280 */
bsalomond79c5492015-04-27 10:07:04 -0700281 kHWAntialias_Flag = 0x02,
egdaniel89af44a2014-09-26 06:15:04 -0700282
bsalomond79c5492015-04-27 10:07:04 -0700283 /**
284 * Modifies the vertex shader so that vertices will be positioned at pixel centers.
285 */
286 kSnapVerticesToPixelCenters_Flag = 0x04,
287
288 kLast_Flag = kSnapVerticesToPixelCenters_Flag,
egdaniel89af44a2014-09-26 06:15:04 -0700289 };
290
bsalomond79c5492015-04-27 10:07:04 -0700291 bool isDither() const { return SkToBool(fFlags & kDither_Flag); }
292 bool isHWAntialias() const { return SkToBool(fFlags & kHWAntialias_Flag); }
293 bool snapVerticesToPixelCenters() const {
294 return SkToBool(fFlags & kSnapVerticesToPixelCenters_Flag); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000295
296 /**
297 * Enable render state settings.
298 *
bsalomond79c5492015-04-27 10:07:04 -0700299 * @param flags bitfield of Flags specifying the states to enable
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000300 */
bsalomond79c5492015-04-27 10:07:04 -0700301 void enableState(uint32_t flags) { fFlags |= flags; }
302
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000303 /**
304 * Disable render state settings.
305 *
bsalomond79c5492015-04-27 10:07:04 -0700306 * @param flags bitfield of Flags specifying the states to disable
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000307 */
bsalomond79c5492015-04-27 10:07:04 -0700308 void disableState(uint32_t flags) { fFlags &= ~(flags); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000309
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000310 /**
bsalomond79c5492015-04-27 10:07:04 -0700311 * Enable or disable flags based on a boolean.
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000312 *
bsalomond79c5492015-04-27 10:07:04 -0700313 * @param flags bitfield of Flags to enable or disable
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000314 * @param enable if true enable stateBits, otherwise disable
315 */
bsalomond79c5492015-04-27 10:07:04 -0700316 void setState(uint32_t flags, bool enable) {
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000317 if (enable) {
bsalomond79c5492015-04-27 10:07:04 -0700318 this->enableState(flags);
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000319 } else {
bsalomond79c5492015-04-27 10:07:04 -0700320 this->disableState(flags);
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000321 }
322 }
323
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000324 /// @}
325
326 ///////////////////////////////////////////////////////////////////////////
327 /// @name Face Culling
328 ////
329
egdaniel89af44a2014-09-26 06:15:04 -0700330 enum DrawFace {
331 kInvalid_DrawFace = -1,
332
333 kBoth_DrawFace,
334 kCCW_DrawFace,
335 kCW_DrawFace,
336 };
337
338 /**
339 * Gets whether the target is drawing clockwise, counterclockwise,
340 * or both faces.
341 * @return the current draw face(s).
342 */
343 DrawFace getDrawFace() const { return fDrawFace; }
344
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000345 /**
346 * Controls whether clockwise, counterclockwise, or both faces are drawn.
347 * @param face the face(s) to draw.
348 */
349 void setDrawFace(DrawFace face) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000350 SkASSERT(kInvalid_DrawFace != face);
bsalomon2ed5ef82014-07-07 08:44:05 -0700351 fDrawFace = face;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000352 }
353
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000354 /// @}
355
356 ///////////////////////////////////////////////////////////////////////////
tomhudson@google.com62b09682011-11-09 16:39:17 +0000357
bsalomon6be6f7c2015-02-26 13:05:21 -0800358 GrPipelineBuilder& operator=(const GrPipelineBuilder& that);
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000359
joshualitt4d8da812015-01-28 12:53:54 -0800360 // TODO delete when we have Batch
joshualitt56995b52014-12-11 15:44:02 -0800361 const GrProcOptInfo& colorProcInfo(const GrPrimitiveProcessor* pp) const {
362 this->calcColorInvariantOutput(pp);
egdaniel912b3d22014-11-17 07:45:53 -0800363 return fColorProcInfo;
364 }
365
joshualitt56995b52014-12-11 15:44:02 -0800366 const GrProcOptInfo& coverageProcInfo(const GrPrimitiveProcessor* pp) const {
367 this->calcCoverageInvariantOutput(pp);
egdaniel912b3d22014-11-17 07:45:53 -0800368 return fCoverageProcInfo;
369 }
370
joshualitt4d8da812015-01-28 12:53:54 -0800371 const GrProcOptInfo& colorProcInfo(const GrBatch* batch) const {
372 this->calcColorInvariantOutput(batch);
373 return fColorProcInfo;
374 }
375
376 const GrProcOptInfo& coverageProcInfo(const GrBatch* batch) const {
377 this->calcCoverageInvariantOutput(batch);
378 return fCoverageProcInfo;
379 }
joshualitt44701df2015-02-23 14:44:57 -0800380
381 void setClip(const GrClip& clip) { fClip = clip; }
382 const GrClip& clip() const { return fClip; }
383
egdaniele36914c2015-02-13 09:00:33 -0800384private:
385 // Calculating invariant color / coverage information is expensive, so we partially cache the
386 // results.
387 //
388 // canUseFracCoveragePrimProc() - Called in regular skia draw, caches results but only for a
389 // specific color and coverage. May be called multiple times
390 // willBlendWithDst() - only called by Nvpr, does not cache results
391 // GrOptDrawState constructor - never caches results
joshualittd15e4e42015-01-26 13:30:10 -0800392
393 /**
joshualitt4d8da812015-01-28 12:53:54 -0800394 * Primproc variants of the calc functions
395 * TODO remove these when batch is everywhere
joshualittd5a7db42015-01-27 15:39:06 -0800396 */
joshualitt4d8da812015-01-28 12:53:54 -0800397 void calcColorInvariantOutput(const GrPrimitiveProcessor*) const;
joshualittc2893c52015-01-28 06:54:30 -0800398 void calcCoverageInvariantOutput(const GrPrimitiveProcessor*) const;
joshualittd5a7db42015-01-27 15:39:06 -0800399
400 /**
joshualitt4d8da812015-01-28 12:53:54 -0800401 * GrBatch provides the initial seed for these loops based off of its initial geometry data
402 */
403 void calcColorInvariantOutput(const GrBatch*) const;
404 void calcCoverageInvariantOutput(const GrBatch*) const;
405
406 /**
egdanielb6cbc382014-11-13 11:00:34 -0800407 * If fColorProcInfoValid is false, function calculates the invariant output for the color
bsalomon6be6f7c2015-02-26 13:05:21 -0800408 * processors and results are stored in fColorProcInfo.
egdanielb6cbc382014-11-13 11:00:34 -0800409 */
joshualitt2e3b3e32014-12-09 13:31:14 -0800410 void calcColorInvariantOutput(GrColor) const;
egdanielb6cbc382014-11-13 11:00:34 -0800411
412 /**
413 * If fCoverageProcInfoValid is false, function calculates the invariant output for the coverage
bsalomon6be6f7c2015-02-26 13:05:21 -0800414 * processors and results are stored in fCoverageProcInfo.
egdanielb6cbc382014-11-13 11:00:34 -0800415 */
joshualitt2e3b3e32014-12-09 13:31:14 -0800416 void calcCoverageInvariantOutput(GrColor) const;
egdanielb6cbc382014-11-13 11:00:34 -0800417
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000418 // Some of the auto restore objects assume that no effects are removed during their lifetime.
419 // This is used to assert that this condition holds.
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +0000420 SkDEBUGCODE(int fBlockEffectRemovalCnt;)
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000421
joshualitta5305a12014-10-10 17:47:00 -0700422 typedef SkSTArray<4, GrFragmentStage> FragmentStageArray;
egdaniel89af44a2014-09-26 06:15:04 -0700423
bsalomonae59b772014-11-19 08:23:49 -0800424 SkAutoTUnref<GrRenderTarget> fRenderTarget;
bsalomond79c5492015-04-27 10:07:04 -0700425 uint32_t fFlags;
bsalomonae59b772014-11-19 08:23:49 -0800426 GrStencilSettings fStencilSettings;
bsalomonae59b772014-11-19 08:23:49 -0800427 DrawFace fDrawFace;
joshualitt2fdeda02015-01-22 07:11:44 -0800428 mutable SkAutoTUnref<const GrXPFactory> fXPFactory;
bsalomonae59b772014-11-19 08:23:49 -0800429 FragmentStageArray fColorStages;
430 FragmentStageArray fCoverageStages;
joshualitt44701df2015-02-23 14:44:57 -0800431 GrClip fClip;
egdaniel89af44a2014-09-26 06:15:04 -0700432
egdanielb6cbc382014-11-13 11:00:34 -0800433 mutable GrProcOptInfo fColorProcInfo;
434 mutable GrProcOptInfo fCoverageProcInfo;
435 mutable bool fColorProcInfoValid;
436 mutable bool fCoverageProcInfoValid;
joshualitt2e3b3e32014-12-09 13:31:14 -0800437 mutable GrColor fColorCache;
438 mutable GrColor fCoverageCache;
egdanielb6cbc382014-11-13 11:00:34 -0800439
egdaniel8dd688b2015-01-22 10:16:09 -0800440 friend class GrPipeline;
tomhudson@google.com93813632011-10-27 20:21:16 +0000441};
442
443#endif