blob: dcd6ff9aaf8459f03ee68ec12b65c7e38311c02c [file] [log] [blame]
tomhudson@google.com93813632011-10-27 20:21:16 +00001/*
2 * Copyright 2011 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#ifndef GrDrawState_DEFINED
9#define GrDrawState_DEFINED
10
egdaniel21aed572014-08-26 12:24:06 -070011#include "GrRODrawState.h"
12
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +000013#include "GrBlend.h"
bsalomon@google.com68b58c92013-01-17 16:50:08 +000014#include "effects/GrSimpleTextureEffect.h"
tomhudson@google.com93813632011-10-27 20:21:16 +000015
egdaniel21aed572014-08-26 12:24:06 -070016/**
17 * Modifiable subclass derived from GrRODrawState. The majority of the data that represents a draw
18 * state is stored in the parent class. GrDrawState contains methods for setting, adding to, etc.
19 * various data members of the draw state. This class is used to configure the state used when
20 * issuing draws via GrDrawTarget.
21 */
22class GrDrawState : public GrRODrawState {
bsalomon@google.com2e3d1442012-03-26 20:33:54 +000023public:
reed@google.comfa35e3d2012-06-26 20:16:17 +000024 SK_DECLARE_INST_COUNT(GrDrawState)
rmistry@google.comd6176b02012-08-23 18:14:13 +000025
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000026 GrDrawState() {
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +000027 SkDEBUGCODE(fBlockEffectRemovalCnt = 0;)
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000028 this->reset();
29 }
tomhudson@google.com93813632011-10-27 20:21:16 +000030
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000031 GrDrawState(const SkMatrix& initialViewMatrix) {
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +000032 SkDEBUGCODE(fBlockEffectRemovalCnt = 0;)
bsalomon@google.comeb6879f2013-06-13 19:34:18 +000033 this->reset(initialViewMatrix);
34 }
bsalomon@google.com137f1342013-05-29 21:27:53 +000035
36 /**
37 * Copies another draw state.
38 **/
commit-bot@chromium.orgfaa5ae42013-07-23 11:13:56 +000039 GrDrawState(const GrDrawState& state) : INHERITED() {
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +000040 SkDEBUGCODE(fBlockEffectRemovalCnt = 0;)
bsalomon@google.com46f7afb2012-01-18 19:51:55 +000041 *this = state;
42 }
43
bsalomon@google.com137f1342013-05-29 21:27:53 +000044 /**
45 * Copies another draw state with a preconcat to the view matrix.
46 **/
bsalomon8f727332014-08-05 07:50:06 -070047 GrDrawState(const GrDrawState& state, const SkMatrix& preConcatMatrix);
robertphillips@google.com9ec07532012-06-22 12:01:30 +000048
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000049 virtual ~GrDrawState() { SkASSERT(0 == fBlockEffectRemovalCnt); }
bsalomon@google.com137f1342013-05-29 21:27:53 +000050
bsalomon@google.com52a5dcb2012-01-17 16:01:37 +000051 /**
bsalomon@google.com137f1342013-05-29 21:27:53 +000052 * Resets to the default state. GrEffects will be removed from all stages.
rmistry@google.comd6176b02012-08-23 18:14:13 +000053 */
bsalomon@google.com137f1342013-05-29 21:27:53 +000054 void reset() { this->onReset(NULL); }
robertphillips@google.com9ec07532012-06-22 12:01:30 +000055
bsalomon@google.com137f1342013-05-29 21:27:53 +000056 void reset(const SkMatrix& initialViewMatrix) { this->onReset(&initialViewMatrix); }
bsalomon@google.comaf84e742012-10-05 13:23:24 +000057
58 /**
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +000059 * Initializes the GrDrawState based on a GrPaint, view matrix and render target. Note that
60 * GrDrawState encompasses more than GrPaint. Aspects of GrDrawState that have no GrPaint
bsalomon9c0822a2014-08-11 11:07:48 -070061 * equivalents are set to default values with the exception of vertex attribute state which
62 * is unmodified by this function and clipping which will be enabled.
bsalomon@google.comaf84e742012-10-05 13:23:24 +000063 */
commit-bot@chromium.orgbb6a3172013-05-28 17:25:49 +000064 void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000065
66 ///////////////////////////////////////////////////////////////////////////
jvanverth@google.com9b855c72013-03-01 18:21:22 +000067 /// @name Vertex Attributes
jvanverth@google.comcc782382013-01-28 20:39:48 +000068 ////
69
jvanverth@google.com9b855c72013-03-01 18:21:22 +000070 /**
jvanverth@google.com054ae992013-04-01 20:06:51 +000071 * The format of vertices is represented as an array of GrVertexAttribs, with each representing
72 * the type of the attribute, its offset, and semantic binding (see GrVertexAttrib in
73 * GrTypesPriv.h).
jvanverth@google.comb8b705b2013-02-28 16:28:34 +000074 *
jvanverth@google.com054ae992013-04-01 20:06:51 +000075 * The mapping of attributes with kEffect bindings to GrEffect inputs is specified when
76 * setEffect is called.
jvanverth@google.comb8b705b2013-02-28 16:28:34 +000077 */
jvanverth@google.comb75b0a02013-02-05 20:33:30 +000078
jvanverth@google.com9b855c72013-03-01 18:21:22 +000079 /**
robertphillips@google.com42903302013-04-20 12:26:07 +000080 * Sets vertex attributes for next draw. The object driving the templatization
81 * should be a global GrVertexAttrib array that is never changed.
jvanverth@google.com9b855c72013-03-01 18:21:22 +000082 */
robertphillips@google.com42903302013-04-20 12:26:07 +000083 template <const GrVertexAttrib A[]> void setVertexAttribs(int count) {
84 this->setVertexAttribs(A, count);
85 }
jvanverth@google.comb8b705b2013-02-28 16:28:34 +000086
jvanverth@google.com9b855c72013-03-01 18:21:22 +000087 /**
jvanverth@google.com054ae992013-04-01 20:06:51 +000088 * Sets default vertex attributes for next draw. The default is a single attribute:
89 * {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribType}
jvanverth@google.com9b855c72013-03-01 18:21:22 +000090 */
91 void setDefaultVertexAttribs();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +000092
jvanverth@google.com054ae992013-04-01 20:06:51 +000093 /**
bsalomon@google.com0406b9e2013-04-02 21:00:15 +000094 * Helper to save/restore vertex attribs
95 */
96 class AutoVertexAttribRestore {
97 public:
bsalomon8f727332014-08-05 07:50:06 -070098 AutoVertexAttribRestore(GrDrawState* drawState);
bsalomon@google.com0406b9e2013-04-02 21:00:15 +000099
bsalomon8f727332014-08-05 07:50:06 -0700100 ~AutoVertexAttribRestore() { fDrawState->setVertexAttribs(fVAPtr, fVACount); }
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000101
102 private:
robertphillips@google.com42903302013-04-20 12:26:07 +0000103 GrDrawState* fDrawState;
104 const GrVertexAttrib* fVAPtr;
105 int fVACount;
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000106 };
107
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000108 /// @}
109
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000110 /**
bsalomon62c447d2014-08-08 08:08:50 -0700111 * Depending on features available in the underlying 3D API and the color blend mode requested
112 * it may or may not be possible to correctly blend with fractional pixel coverage generated by
113 * the fragment shader.
114 *
115 * This function considers the current draw state and the draw target's capabilities to
116 * determine whether coverage can be handled correctly. This function assumes that the caller
117 * intends to specify fractional pixel coverage (via setCoverage(), through a coverage vertex
118 * attribute, or a coverage effect) but may not have specified it yet.
119 */
120 bool couldApplyCoverage(const GrDrawTargetCaps& caps) const;
121
jvanverth@google.comcc782382013-01-28 20:39:48 +0000122 /// @}
123
124 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000125 /// @name Color
126 ////
127
128 /**
129 * Sets color for next draw to a premultiplied-alpha color.
130 *
131 * @param color the color to set.
132 */
egdaniel9514d242014-07-18 06:15:43 -0700133 void setColor(GrColor color) {
134 fColor = color;
135 this->invalidateBlendOptFlags();
136 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000137
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000138 /**
139 * Sets the color to be used for the next draw to be
140 * (r,g,b,a) = (alpha, alpha, alpha, alpha).
141 *
142 * @param alpha The alpha value to set as the color.
143 */
bsalomon62c447d2014-08-08 08:08:50 -0700144 void setAlpha(uint8_t a) { this->setColor((a << 24) | (a << 16) | (a << 8) | a); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000145
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000146 /// @}
147
148 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000149 /// @name Coverage
150 ////
151
152 /**
rmistry@google.comd6176b02012-08-23 18:14:13 +0000153 * Sets a constant fractional coverage to be applied to the draw. The
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000154 * initial value (after construction or reset()) is 0xff. The constant
155 * coverage is ignored when per-vertex coverage is provided.
156 */
157 void setCoverage(uint8_t coverage) {
egdaniel8cbf3d52014-08-21 06:27:22 -0700158 fCoverage = coverage;
egdaniel9514d242014-07-18 06:15:43 -0700159 this->invalidateBlendOptFlags();
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000160 }
161
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000162 /// @}
163
164 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.comadc65362013-01-28 14:26:09 +0000165 /// @name Effect Stages
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000166 /// Each stage hosts a GrEffect. The effect produces an output color or coverage in the fragment
167 /// shader. Its inputs are the output from the previous stage as well as some variables
168 /// available to it in the fragment and vertex shader (e.g. the vertex position, the dst color,
169 /// the fragment position, local coordinates).
170 ///
171 /// The stages are divided into two sets, color-computing and coverage-computing. The final
172 /// color stage produces the final pixel color. The coverage-computing stages function exactly
173 /// as the color-computing but the output of the final coverage stage is treated as a fractional
174 /// pixel coverage rather than as input to the src/dst color blend step.
175 ///
176 /// The input color to the first color-stage is either the constant color or interpolated
177 /// per-vertex colors. The input to the first coverage stage is either a constant coverage
178 /// (usually full-coverage) or interpolated per-vertex coverage.
179 ///
180 /// See the documentation of kCoverageDrawing_StateBit for information about disabling the
181 /// the color / coverage distinction.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000182 ////
183
bsalomon97b9ab72014-07-08 06:52:35 -0700184 const GrEffect* addColorEffect(const GrEffect* effect, int attr0 = -1, int attr1 = -1) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000185 SkASSERT(NULL != effect);
egdaniel8cbf3d52014-08-21 06:27:22 -0700186 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect, attr0, attr1));
egdaniel9514d242014-07-18 06:15:43 -0700187 this->invalidateBlendOptFlags();
jvanverth@google.com65eb4d52013-03-19 18:51:02 +0000188 return effect;
189 }
skia.committer@gmail.com01c34ee2013-03-20 07:01:02 +0000190
bsalomon97b9ab72014-07-08 06:52:35 -0700191 const GrEffect* addCoverageEffect(const GrEffect* effect, int attr0 = -1, int attr1 = -1) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000192 SkASSERT(NULL != effect);
egdaniel8cbf3d52014-08-21 06:27:22 -0700193 SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrEffectStage, (effect, attr0, attr1));
egdaniel9514d242014-07-18 06:15:43 -0700194 this->invalidateBlendOptFlags();
bsalomon@google.comadc65362013-01-28 14:26:09 +0000195 return effect;
196 }
197
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000198 /**
bsalomon@google.comc7818882013-03-20 19:19:53 +0000199 * Creates a GrSimpleTextureEffect that uses local coords as texture coordinates.
tomhudson@google.com1e8f0162012-07-20 16:25:18 +0000200 */
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000201 void addColorTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
bsalomon97b9ab72014-07-08 06:52:35 -0700202 this->addColorEffect(GrSimpleTextureEffect::Create(texture, matrix))->unref();
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000203 }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000204
205 void addCoverageTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
bsalomon97b9ab72014-07-08 06:52:35 -0700206 this->addCoverageEffect(GrSimpleTextureEffect::Create(texture, matrix))->unref();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000207 }
208
209 void addColorTextureEffect(GrTexture* texture,
210 const SkMatrix& matrix,
211 const GrTextureParams& params) {
bsalomon97b9ab72014-07-08 06:52:35 -0700212 this->addColorEffect(GrSimpleTextureEffect::Create(texture, matrix, params))->unref();
bsalomon@google.com1ce49fc2012-09-18 14:14:49 +0000213 }
214
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000215 void addCoverageTextureEffect(GrTexture* texture,
216 const SkMatrix& matrix,
217 const GrTextureParams& params) {
bsalomon97b9ab72014-07-08 06:52:35 -0700218 this->addCoverageEffect(GrSimpleTextureEffect::Create(texture, matrix, params))->unref();
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000219 }
tomhudson@google.com676e6602012-07-10 17:21:48 +0000220
robertphillips@google.com972265d2012-06-13 18:49:30 +0000221 /**
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000222 * When this object is destroyed it will remove any effects from the draw state that were added
223 * after its constructor.
robertphillips@google.com972265d2012-06-13 18:49:30 +0000224 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000225 class AutoRestoreEffects : public ::SkNoncopyable {
robertphillips@google.com972265d2012-06-13 18:49:30 +0000226 public:
bsalomon@google.com2fad5a82013-06-13 19:47:23 +0000227 AutoRestoreEffects() : fDrawState(NULL), fColorEffectCnt(0), fCoverageEffectCnt(0) {}
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000228
skia.committer@gmail.com5c493d52013-06-14 07:00:49 +0000229 AutoRestoreEffects(GrDrawState* ds) : fDrawState(NULL), fColorEffectCnt(0), fCoverageEffectCnt(0) {
230 this->set(ds);
robertphillips@google.comf09b87d2013-06-13 20:06:44 +0000231 }
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000232
233 ~AutoRestoreEffects() { this->set(NULL); }
234
bsalomon8f727332014-08-05 07:50:06 -0700235 void set(GrDrawState* ds);
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000236
bsalomon8af05232014-06-03 06:34:58 -0700237 bool isSet() const { return NULL != fDrawState; }
238
robertphillips@google.com972265d2012-06-13 18:49:30 +0000239 private:
240 GrDrawState* fDrawState;
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000241 int fColorEffectCnt;
242 int fCoverageEffectCnt;
robertphillips@google.com972265d2012-06-13 18:49:30 +0000243 };
244
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000245 /// @}
246
247 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000248 /// @name Blending
249 ////
250
251 /**
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000252 * Sets the blending function coefficients.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000253 *
254 * The blend function will be:
255 * D' = sat(S*srcCoef + D*dstCoef)
256 *
257 * where D is the existing destination color, S is the incoming source
258 * color, and D' is the new destination color that will be written. sat()
259 * is the saturation function.
260 *
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000261 * @param srcCoef coefficient applied to the src color.
262 * @param dstCoef coefficient applied to the dst color.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000263 */
264 void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
egdaniel8cbf3d52014-08-21 06:27:22 -0700265 fSrcBlend = srcCoeff;
266 fDstBlend = dstCoeff;
egdaniel9514d242014-07-18 06:15:43 -0700267 this->invalidateBlendOptFlags();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000268 #ifdef SK_DEBUG
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000269 if (GrBlendCoeffRefsDst(dstCoeff)) {
270 GrPrintf("Unexpected dst blend coeff. Won't work correctly with coverage stages.\n");
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000271 }
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000272 if (GrBlendCoeffRefsSrc(srcCoeff)) {
273 GrPrintf("Unexpected src blend coeff. Won't work correctly with coverage stages.\n");
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000274 }
275 #endif
276 }
277
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000278 /**
279 * Sets the blending function constant referenced by the following blending
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000280 * coefficients:
bsalomon@google.com47059542012-06-06 20:51:20 +0000281 * kConstC_GrBlendCoeff
282 * kIConstC_GrBlendCoeff
283 * kConstA_GrBlendCoeff
284 * kIConstA_GrBlendCoeff
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000285 *
286 * @param constant the constant to set
287 */
egdaniel9514d242014-07-18 06:15:43 -0700288 void setBlendConstant(GrColor constant) {
289 fBlendConstant = constant;
290 this->invalidateBlendOptFlags();
291 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000292
293 /**
bsalomon@google.com2b446732013-02-12 16:47:41 +0000294 * Determines what optimizations can be applied based on the blend. The coefficients may have
295 * to be tweaked in order for the optimization to work. srcCoeff and dstCoeff are optional
296 * params that receive the tweaked coefficients. Normally the function looks at the current
297 * state to see if coverage is enabled. By setting forceCoverage the caller can speculatively
298 * determine the blend optimizations that would be used if there was partial pixel coverage.
299 *
300 * Subclasses of GrDrawTarget that actually draw (as opposed to those that just buffer for
301 * playback) must call this function and respect the flags that replace the output color.
egdaniel9514d242014-07-18 06:15:43 -0700302 *
303 * If the cached BlendOptFlags does not have the invalidate bit set, then getBlendOpts will
304 * simply returned the cached flags and coefficients. Otherwise it will calculate the values.
bsalomon@google.com2b446732013-02-12 16:47:41 +0000305 */
306 BlendOptFlags getBlendOpts(bool forceCoverage = false,
307 GrBlendCoeff* srcCoeff = NULL,
308 GrBlendCoeff* dstCoeff = NULL) const;
309
egdaniel21aed572014-08-26 12:24:06 -0700310 /**
311 * We don't use suplied vertex color attributes if our blend mode is EmitCoverage or
312 * EmitTransBlack
313 */
314 bool canIgnoreColorAttribute() const;
315
316
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000317 /// @}
318
319 ///////////////////////////////////////////////////////////////////////////
320 /// @name View Matrix
321 ////
322
323 /**
bsalomon@google.com137f1342013-05-29 21:27:53 +0000324 * Sets the view matrix to identity and updates any installed effects to compensate for the
325 * coord system change.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000326 */
bsalomon@google.com137f1342013-05-29 21:27:53 +0000327 bool setIdentityViewMatrix();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000328
bsalomon@google.com5b3e8902012-10-05 20:13:28 +0000329 ////////////////////////////////////////////////////////////////////////////
330
331 /**
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000332 * Preconcats the current view matrix and restores the previous view matrix in the destructor.
bsalomon@google.com137f1342013-05-29 21:27:53 +0000333 * Effect matrices are automatically adjusted to compensate and adjusted back in the destructor.
bsalomon@google.com5b3e8902012-10-05 20:13:28 +0000334 */
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000335 class AutoViewMatrixRestore : public ::SkNoncopyable {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000336 public:
337 AutoViewMatrixRestore() : fDrawState(NULL) {}
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000338
bsalomon@google.comc7818882013-03-20 19:19:53 +0000339 AutoViewMatrixRestore(GrDrawState* ds, const SkMatrix& preconcatMatrix) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000340 fDrawState = NULL;
bsalomon@google.comc7818882013-03-20 19:19:53 +0000341 this->set(ds, preconcatMatrix);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000342 }
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000343
344 ~AutoViewMatrixRestore() { this->restore(); }
345
bsalomon@google.coma8347462012-10-08 18:59:39 +0000346 /**
347 * Can be called prior to destructor to restore the original matrix.
348 */
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000349 void restore();
skia.committer@gmail.comf467ce72012-10-09 02:01:37 +0000350
bsalomon@google.comc7818882013-03-20 19:19:53 +0000351 void set(GrDrawState* drawState, const SkMatrix& preconcatMatrix);
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000352
bsalomon@google.com137f1342013-05-29 21:27:53 +0000353 /** Sets the draw state's matrix to identity. This can fail because the current view matrix
354 is not invertible. */
355 bool setIdentity(GrDrawState* drawState);
bsalomon@google.com2fdcdeb2012-10-08 17:15:55 +0000356
bsalomon@google.com5b3e8902012-10-05 20:13:28 +0000357 private:
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000358 void doEffectCoordChanges(const SkMatrix& coordChangeMatrix);
359
360 GrDrawState* fDrawState;
361 SkMatrix fViewMatrix;
362 int fNumColorStages;
363 SkAutoSTArray<8, GrEffectStage::SavedCoordChange> fSavedCoordChanges;
bsalomon@google.com5b3e8902012-10-05 20:13:28 +0000364 };
365
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000366 /// @}
367
368 ///////////////////////////////////////////////////////////////////////////
369 /// @name Render Target
370 ////
371
372 /**
bsalomon@google.comca432082013-01-23 19:53:46 +0000373 * Sets the render-target used at the next drawing call
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000374 *
375 * @param target The render target to set.
376 */
bsalomon62c447d2014-08-08 08:08:50 -0700377 void setRenderTarget(GrRenderTarget* target) { fRenderTarget.reset(SkSafeRef(target)); }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000378
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +0000379 class AutoRenderTargetRestore : public ::SkNoncopyable {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000380 public:
bsalomon@google.comcadbcb82012-01-06 19:22:11 +0000381 AutoRenderTargetRestore() : fDrawState(NULL), fSavedTarget(NULL) {}
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000382 AutoRenderTargetRestore(GrDrawState* ds, GrRenderTarget* newTarget) {
383 fDrawState = NULL;
robertphillips@google.com7460b372012-04-25 16:54:51 +0000384 fSavedTarget = NULL;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000385 this->set(ds, newTarget);
386 }
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000387 ~AutoRenderTargetRestore() { this->restore(); }
388
389 void restore() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000390 if (NULL != fDrawState) {
391 fDrawState->setRenderTarget(fSavedTarget);
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000392 fDrawState = NULL;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000393 }
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000394 SkSafeSetNull(fSavedTarget);
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000395 }
396
397 void set(GrDrawState* ds, GrRenderTarget* newTarget) {
398 this->restore();
399
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000400 if (NULL != ds) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000401 SkASSERT(NULL == fSavedTarget);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000402 fSavedTarget = ds->getRenderTarget();
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000403 SkSafeRef(fSavedTarget);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000404 ds->setRenderTarget(newTarget);
robertphillips@google.com9ec07532012-06-22 12:01:30 +0000405 fDrawState = ds;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000406 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000407 }
408 private:
409 GrDrawState* fDrawState;
410 GrRenderTarget* fSavedTarget;
411 };
412
413 /// @}
414
415 ///////////////////////////////////////////////////////////////////////////
416 /// @name Stencil
417 ////
418
419 /**
420 * Sets the stencil settings to use for the next draw.
421 * Changing the clip has the side-effect of possibly zeroing
422 * out the client settable stencil bits. So multipass algorithms
423 * using stencil should not change the clip between passes.
424 * @param settings the stencil settings to use.
425 */
426 void setStencil(const GrStencilSettings& settings) {
bsalomon2ed5ef82014-07-07 08:44:05 -0700427 fStencilSettings = settings;
egdaniel9514d242014-07-18 06:15:43 -0700428 this->invalidateBlendOptFlags();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000429 }
430
431 /**
432 * Shortcut to disable stencil testing and ops.
433 */
434 void disableStencil() {
bsalomon2ed5ef82014-07-07 08:44:05 -0700435 fStencilSettings.setDisabled();
egdaniel9514d242014-07-18 06:15:43 -0700436 this->invalidateBlendOptFlags();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000437 }
438
bsalomon2ed5ef82014-07-07 08:44:05 -0700439 GrStencilSettings* stencil() { return &fStencilSettings; }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000440
441 /// @}
442
443 ///////////////////////////////////////////////////////////////////////////
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000444 /// @name State Flags
445 ////
tomhudson@google.com62b09682011-11-09 16:39:17 +0000446
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000447 void resetStateFlags() {
bsalomon2ed5ef82014-07-07 08:44:05 -0700448 fFlagBits = 0;
egdaniel9514d242014-07-18 06:15:43 -0700449 this->invalidateBlendOptFlags();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000450 }
451
452 /**
453 * Enable render state settings.
454 *
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000455 * @param stateBits bitfield of StateBits specifying the states to enable
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000456 */
457 void enableState(uint32_t stateBits) {
bsalomon2ed5ef82014-07-07 08:44:05 -0700458 fFlagBits |= stateBits;
egdaniel9514d242014-07-18 06:15:43 -0700459 this->invalidateBlendOptFlags();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000460 }
461
462 /**
463 * Disable render state settings.
464 *
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000465 * @param stateBits bitfield of StateBits specifying the states to disable
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000466 */
467 void disableState(uint32_t stateBits) {
bsalomon2ed5ef82014-07-07 08:44:05 -0700468 fFlagBits &= ~(stateBits);
egdaniel9514d242014-07-18 06:15:43 -0700469 this->invalidateBlendOptFlags();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000470 }
471
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000472 /**
473 * Enable or disable stateBits based on a boolean.
474 *
bsalomon@google.com1e269b52012-10-15 14:25:31 +0000475 * @param stateBits bitfield of StateBits to enable or disable
bsalomon@google.comd5d69ff2012-10-04 19:42:00 +0000476 * @param enable if true enable stateBits, otherwise disable
477 */
478 void setState(uint32_t stateBits, bool enable) {
479 if (enable) {
480 this->enableState(stateBits);
481 } else {
482 this->disableState(stateBits);
483 }
484 }
485
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000486 /// @}
487
488 ///////////////////////////////////////////////////////////////////////////
489 /// @name Face Culling
490 ////
491
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000492 /**
493 * Controls whether clockwise, counterclockwise, or both faces are drawn.
494 * @param face the face(s) to draw.
495 */
496 void setDrawFace(DrawFace face) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000497 SkASSERT(kInvalid_DrawFace != face);
bsalomon2ed5ef82014-07-07 08:44:05 -0700498 fDrawFace = face;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000499 }
500
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000501 /// @}
502
503 ///////////////////////////////////////////////////////////////////////////
bsalomon62c447d2014-08-08 08:08:50 -0700504 /// @name Hints
505 /// Hints that when provided can enable optimizations.
506 ////
507
508 enum Hints { kVertexColorsAreOpaque_Hint = 0x1, };
509
510 void setHint(Hints hint, bool value) { fHints = value ? (fHints | hint) : (fHints & ~hint); }
511
512 /// @}
513
514 ///////////////////////////////////////////////////////////////////////////
tomhudson@google.com62b09682011-11-09 16:39:17 +0000515
bsalomon838f62d2014-08-05 07:15:57 -0700516 /** Return type for CombineIfPossible. */
517 enum CombinedState {
518 /** The GrDrawStates cannot be combined. */
519 kIncompatible_CombinedState,
520 /** Either draw state can be used in place of the other. */
521 kAOrB_CombinedState,
522 /** Use the first draw state. */
523 kA_CombinedState,
524 /** Use the second draw state. */
525 kB_CombinedState,
526 };
527
528 /** This function determines whether the GrDrawStates used for two draws can be combined into
529 a single GrDrawState. This is used to avoid storing redundant GrDrawStates and to determine
530 if draws can be batched. The return value indicates whether combining is possible and, if
531 so, which of the two inputs should be used. */
bsalomon62c447d2014-08-08 08:08:50 -0700532 static CombinedState CombineIfPossible(const GrDrawState& a, const GrDrawState& b,
533 const GrDrawTargetCaps& caps);
bsalomon72336ed2014-08-05 07:35:56 -0700534
bsalomon8f727332014-08-05 07:50:06 -0700535 GrDrawState& operator= (const GrDrawState& that);
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000536
537private:
bsalomon8f727332014-08-05 07:50:06 -0700538 void onReset(const SkMatrix* initialViewMatrix);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000539
egdaniel21aed572014-08-26 12:24:06 -0700540 /**
541 * Determines whether src alpha is guaranteed to be one for all src pixels
542 */
543 bool srcAlphaWillBeOne() const;
544
545 /**
546 * Helper function for getBlendOpts.
547 */
egdaniel9514d242014-07-18 06:15:43 -0700548 BlendOptFlags calcBlendOpts(bool forceCoverage = false,
bsalomon62c447d2014-08-08 08:08:50 -0700549 GrBlendCoeff* srcCoeff = NULL,
550 GrBlendCoeff* dstCoeff = NULL) const;
jvanverth@google.com054ae992013-04-01 20:06:51 +0000551
egdaniel21aed572014-08-26 12:24:06 -0700552 void invalidateBlendOptFlags() {
553 fBlendOptFlags = kInvalid_BlendOptFlag;
554 }
bsalomon62c447d2014-08-08 08:08:50 -0700555
556 uint32_t fHints;
bsalomon2ed5ef82014-07-07 08:44:05 -0700557
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000558 // Some of the auto restore objects assume that no effects are removed during their lifetime.
559 // This is used to assert that this condition holds.
commit-bot@chromium.org1acc3d72013-09-06 23:13:05 +0000560 SkDEBUGCODE(int fBlockEffectRemovalCnt;)
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000561
robertphillips@google.com42903302013-04-20 12:26:07 +0000562 /**
563 * Sets vertex attributes for next draw.
564 *
565 * @param attribs the array of vertex attributes to set.
566 * @param count the number of attributes being set, limited to kMaxVertexAttribCnt.
567 */
568 void setVertexAttribs(const GrVertexAttrib attribs[], int count);
569
egdaniel21aed572014-08-26 12:24:06 -0700570 typedef GrRODrawState INHERITED;
tomhudson@google.com93813632011-10-27 20:21:16 +0000571};
572
573#endif