| tomhudson@google.com | 9381363 | 2011-10-27 20:21:16 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 11 | #include "GrBlend.h" |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 12 | #include "GrOptDrawState.h" |
| bsalomon | 2a9ca78 | 2014-09-05 14:27:43 -0700 | [diff] [blame] | 13 | #include "GrProgramResource.h" |
| 14 | #include "GrRODrawState.h" |
| bsalomon@google.com | 68b58c9 | 2013-01-17 16:50:08 +0000 | [diff] [blame] | 15 | #include "effects/GrSimpleTextureEffect.h" |
| tomhudson@google.com | 9381363 | 2011-10-27 20:21:16 +0000 | [diff] [blame] | 16 | |
| egdaniel | 21aed57 | 2014-08-26 12:24:06 -0700 | [diff] [blame] | 17 | /** |
| 18 | * Modifiable subclass derived from GrRODrawState. The majority of the data that represents a draw |
| 19 | * state is stored in the parent class. GrDrawState contains methods for setting, adding to, etc. |
| 20 | * various data members of the draw state. This class is used to configure the state used when |
| 21 | * issuing draws via GrDrawTarget. |
| 22 | */ |
| 23 | class GrDrawState : public GrRODrawState { |
| bsalomon@google.com | 2e3d144 | 2012-03-26 20:33:54 +0000 | [diff] [blame] | 24 | public: |
| reed@google.com | fa35e3d | 2012-06-26 20:16:17 +0000 | [diff] [blame] | 25 | SK_DECLARE_INST_COUNT(GrDrawState) |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 26 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 27 | GrDrawState() : fCachedOptState(NULL) { |
| commit-bot@chromium.org | 1acc3d7 | 2013-09-06 23:13:05 +0000 | [diff] [blame] | 28 | SkDEBUGCODE(fBlockEffectRemovalCnt = 0;) |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 29 | this->reset(); |
| 30 | } |
| tomhudson@google.com | 9381363 | 2011-10-27 20:21:16 +0000 | [diff] [blame] | 31 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 32 | GrDrawState(const SkMatrix& initialViewMatrix) : fCachedOptState(NULL) { |
| commit-bot@chromium.org | 1acc3d7 | 2013-09-06 23:13:05 +0000 | [diff] [blame] | 33 | SkDEBUGCODE(fBlockEffectRemovalCnt = 0;) |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 34 | this->reset(initialViewMatrix); |
| 35 | } |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 36 | |
| 37 | /** |
| 38 | * Copies another draw state. |
| 39 | **/ |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 40 | GrDrawState(const GrDrawState& state) : INHERITED(), fCachedOptState(NULL) { |
| commit-bot@chromium.org | 1acc3d7 | 2013-09-06 23:13:05 +0000 | [diff] [blame] | 41 | SkDEBUGCODE(fBlockEffectRemovalCnt = 0;) |
| bsalomon@google.com | 46f7afb | 2012-01-18 19:51:55 +0000 | [diff] [blame] | 42 | *this = state; |
| 43 | } |
| 44 | |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 45 | /** |
| 46 | * Copies another draw state with a preconcat to the view matrix. |
| 47 | **/ |
| bsalomon | 8f72733 | 2014-08-05 07:50:06 -0700 | [diff] [blame] | 48 | GrDrawState(const GrDrawState& state, const SkMatrix& preConcatMatrix); |
| robertphillips@google.com | 9ec0753 | 2012-06-22 12:01:30 +0000 | [diff] [blame] | 49 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 50 | virtual ~GrDrawState() { |
| 51 | SkSafeUnref(fCachedOptState); |
| 52 | SkASSERT(0 == fBlockEffectRemovalCnt); |
| 53 | } |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 54 | |
| bsalomon@google.com | 52a5dcb | 2012-01-17 16:01:37 +0000 | [diff] [blame] | 55 | /** |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 56 | * Resets to the default state. GrEffects will be removed from all stages. |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 57 | */ |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 58 | void reset() { this->onReset(NULL); } |
| robertphillips@google.com | 9ec0753 | 2012-06-22 12:01:30 +0000 | [diff] [blame] | 59 | |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 60 | void reset(const SkMatrix& initialViewMatrix) { this->onReset(&initialViewMatrix); } |
| bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 61 | |
| 62 | /** |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 63 | * Initializes the GrDrawState based on a GrPaint, view matrix and render target. Note that |
| 64 | * GrDrawState encompasses more than GrPaint. Aspects of GrDrawState that have no GrPaint |
| bsalomon | 9c0822a | 2014-08-11 11:07:48 -0700 | [diff] [blame] | 65 | * equivalents are set to default values with the exception of vertex attribute state which |
| 66 | * is unmodified by this function and clipping which will be enabled. |
| bsalomon@google.com | af84e74 | 2012-10-05 13:23:24 +0000 | [diff] [blame] | 67 | */ |
| commit-bot@chromium.org | bb6a317 | 2013-05-28 17:25:49 +0000 | [diff] [blame] | 68 | void setFromPaint(const GrPaint& , const SkMatrix& viewMatrix, GrRenderTarget*); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 69 | |
| 70 | /////////////////////////////////////////////////////////////////////////// |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 71 | /// @name Vertex Attributes |
| jvanverth@google.com | cc78238 | 2013-01-28 20:39:48 +0000 | [diff] [blame] | 72 | //// |
| 73 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 74 | /** |
| jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 75 | * The format of vertices is represented as an array of GrVertexAttribs, with each representing |
| 76 | * the type of the attribute, its offset, and semantic binding (see GrVertexAttrib in |
| 77 | * GrTypesPriv.h). |
| jvanverth@google.com | b8b705b | 2013-02-28 16:28:34 +0000 | [diff] [blame] | 78 | * |
| jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 79 | * The mapping of attributes with kEffect bindings to GrEffect inputs is specified when |
| 80 | * setEffect is called. |
| jvanverth@google.com | b8b705b | 2013-02-28 16:28:34 +0000 | [diff] [blame] | 81 | */ |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 82 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 83 | /** |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 84 | * Sets vertex attributes for next draw. The object driving the templatization |
| 85 | * should be a global GrVertexAttrib array that is never changed. |
| egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 86 | * |
| 87 | * @param count the number of attributes being set, limited to kMaxVertexAttribCnt. |
| 88 | * @param stride the number of bytes between successive vertex data. |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 89 | */ |
| egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 90 | template <const GrVertexAttrib A[]> void setVertexAttribs(int count, size_t stride) { |
| 91 | this->internalSetVertexAttribs(A, count, stride); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 92 | } |
| jvanverth@google.com | b8b705b | 2013-02-28 16:28:34 +0000 | [diff] [blame] | 93 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 94 | /** |
| jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 95 | * Sets default vertex attributes for next draw. The default is a single attribute: |
| 96 | * {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribType} |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 97 | */ |
| 98 | void setDefaultVertexAttribs(); |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 99 | |
| jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 100 | /** |
| bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 101 | * Helper to save/restore vertex attribs |
| 102 | */ |
| 103 | class AutoVertexAttribRestore { |
| 104 | public: |
| bsalomon | 8f72733 | 2014-08-05 07:50:06 -0700 | [diff] [blame] | 105 | AutoVertexAttribRestore(GrDrawState* drawState); |
| bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 106 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 107 | ~AutoVertexAttribRestore() { fDrawState->internalSetVertexAttribs(fVAPtr, fVACount, |
| 108 | fVAStride); } |
| bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 109 | |
| 110 | private: |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 111 | GrDrawState* fDrawState; |
| 112 | const GrVertexAttrib* fVAPtr; |
| 113 | int fVACount; |
| egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 114 | size_t fVAStride; |
| bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 115 | }; |
| 116 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 117 | /// @} |
| 118 | |
| jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 119 | /** |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 120 | * Depending on features available in the underlying 3D API and the color blend mode requested |
| 121 | * it may or may not be possible to correctly blend with fractional pixel coverage generated by |
| 122 | * the fragment shader. |
| 123 | * |
| 124 | * This function considers the current draw state and the draw target's capabilities to |
| 125 | * determine whether coverage can be handled correctly. This function assumes that the caller |
| 126 | * intends to specify fractional pixel coverage (via setCoverage(), through a coverage vertex |
| 127 | * attribute, or a coverage effect) but may not have specified it yet. |
| 128 | */ |
| 129 | bool couldApplyCoverage(const GrDrawTargetCaps& caps) const; |
| 130 | |
| jvanverth@google.com | cc78238 | 2013-01-28 20:39:48 +0000 | [diff] [blame] | 131 | /// @} |
| 132 | |
| 133 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 134 | /// @name Color |
| 135 | //// |
| 136 | |
| 137 | /** |
| 138 | * Sets color for next draw to a premultiplied-alpha color. |
| 139 | * |
| 140 | * @param color the color to set. |
| 141 | */ |
| egdaniel | 9514d24 | 2014-07-18 06:15:43 -0700 | [diff] [blame] | 142 | void setColor(GrColor color) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 143 | if (color != fColor) { |
| 144 | fColor = color; |
| 145 | this->invalidateOptState(); |
| 146 | } |
| egdaniel | 9514d24 | 2014-07-18 06:15:43 -0700 | [diff] [blame] | 147 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 148 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 149 | /** |
| 150 | * Sets the color to be used for the next draw to be |
| 151 | * (r,g,b,a) = (alpha, alpha, alpha, alpha). |
| 152 | * |
| 153 | * @param alpha The alpha value to set as the color. |
| 154 | */ |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 155 | void setAlpha(uint8_t a) { this->setColor((a << 24) | (a << 16) | (a << 8) | a); } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 156 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 157 | /// @} |
| 158 | |
| 159 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | 2401ae8 | 2012-01-17 21:03:05 +0000 | [diff] [blame] | 160 | /// @name Coverage |
| 161 | //// |
| 162 | |
| 163 | /** |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 164 | * Sets a constant fractional coverage to be applied to the draw. The |
| bsalomon@google.com | 2401ae8 | 2012-01-17 21:03:05 +0000 | [diff] [blame] | 165 | * initial value (after construction or reset()) is 0xff. The constant |
| 166 | * coverage is ignored when per-vertex coverage is provided. |
| 167 | */ |
| 168 | void setCoverage(uint8_t coverage) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 169 | if (coverage != fCoverage) { |
| 170 | fCoverage = coverage; |
| 171 | this->invalidateOptState(); |
| 172 | } |
| bsalomon@google.com | 2401ae8 | 2012-01-17 21:03:05 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| bsalomon@google.com | 2401ae8 | 2012-01-17 21:03:05 +0000 | [diff] [blame] | 175 | /// @} |
| 176 | |
| joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 177 | /** |
| 178 | * The geometry processor is the sole element of the skia pipeline which can use the vertex, |
| 179 | * geometry, and tesselation shaders. The GP may also compute a coverage in its fragment shader |
| 180 | * but is never put in the color processing pipeline. |
| 181 | */ |
| 182 | |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 183 | const GrEffect* setGeometryProcessor(const GrEffect* effect) { |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 184 | SkASSERT(effect); |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 185 | SkASSERT(effect->requiresVertexShader()); |
| joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 186 | SkASSERT(!this->hasGeometryProcessor()); |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 187 | fGeometryProcessor.reset(new GrEffectStage(effect)); |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 188 | this->invalidateOptState(); |
| joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 189 | return effect; |
| 190 | } |
| 191 | |
| bsalomon@google.com | 2401ae8 | 2012-01-17 21:03:05 +0000 | [diff] [blame] | 192 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 193 | /// @name Effect Stages |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 194 | /// Each stage hosts a GrEffect. The effect produces an output color or coverage in the fragment |
| 195 | /// shader. Its inputs are the output from the previous stage as well as some variables |
| 196 | /// available to it in the fragment and vertex shader (e.g. the vertex position, the dst color, |
| 197 | /// the fragment position, local coordinates). |
| 198 | /// |
| 199 | /// The stages are divided into two sets, color-computing and coverage-computing. The final |
| 200 | /// color stage produces the final pixel color. The coverage-computing stages function exactly |
| 201 | /// as the color-computing but the output of the final coverage stage is treated as a fractional |
| 202 | /// pixel coverage rather than as input to the src/dst color blend step. |
| 203 | /// |
| 204 | /// The input color to the first color-stage is either the constant color or interpolated |
| 205 | /// per-vertex colors. The input to the first coverage stage is either a constant coverage |
| 206 | /// (usually full-coverage) or interpolated per-vertex coverage. |
| 207 | /// |
| 208 | /// See the documentation of kCoverageDrawing_StateBit for information about disabling the |
| 209 | /// the color / coverage distinction. |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 210 | //// |
| 211 | |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 212 | const GrEffect* addColorEffect(const GrEffect* effect) { |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 213 | SkASSERT(effect); |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 214 | SkASSERT(!effect->requiresVertexShader()); |
| 215 | SkNEW_APPEND_TO_TARRAY(&fColorStages, GrEffectStage, (effect)); |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 216 | this->invalidateOptState(); |
| jvanverth@google.com | 65eb4d5 | 2013-03-19 18:51:02 +0000 | [diff] [blame] | 217 | return effect; |
| 218 | } |
| skia.committer@gmail.com | 01c34ee | 2013-03-20 07:01:02 +0000 | [diff] [blame] | 219 | |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 220 | const GrEffect* addCoverageEffect(const GrEffect* effect) { |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 221 | SkASSERT(effect); |
| joshualitt | 249af15 | 2014-09-15 11:41:13 -0700 | [diff] [blame^] | 222 | SkASSERT(!effect->requiresVertexShader()); |
| 223 | SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrEffectStage, (effect)); |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 224 | this->invalidateOptState(); |
| bsalomon@google.com | adc6536 | 2013-01-28 14:26:09 +0000 | [diff] [blame] | 225 | return effect; |
| 226 | } |
| 227 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 228 | /** |
| bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 229 | * Creates a GrSimpleTextureEffect that uses local coords as texture coordinates. |
| tomhudson@google.com | 1e8f016 | 2012-07-20 16:25:18 +0000 | [diff] [blame] | 230 | */ |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 231 | void addColorTextureEffect(GrTexture* texture, const SkMatrix& matrix) { |
| bsalomon | 97b9ab7 | 2014-07-08 06:52:35 -0700 | [diff] [blame] | 232 | this->addColorEffect(GrSimpleTextureEffect::Create(texture, matrix))->unref(); |
| bsalomon@google.com | dfdb7e5 | 2012-10-16 15:19:45 +0000 | [diff] [blame] | 233 | } |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 234 | |
| 235 | void addCoverageTextureEffect(GrTexture* texture, const SkMatrix& matrix) { |
| bsalomon | 97b9ab7 | 2014-07-08 06:52:35 -0700 | [diff] [blame] | 236 | this->addCoverageEffect(GrSimpleTextureEffect::Create(texture, matrix))->unref(); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | void addColorTextureEffect(GrTexture* texture, |
| 240 | const SkMatrix& matrix, |
| 241 | const GrTextureParams& params) { |
| bsalomon | 97b9ab7 | 2014-07-08 06:52:35 -0700 | [diff] [blame] | 242 | this->addColorEffect(GrSimpleTextureEffect::Create(texture, matrix, params))->unref(); |
| bsalomon@google.com | 1ce49fc | 2012-09-18 14:14:49 +0000 | [diff] [blame] | 243 | } |
| 244 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 245 | void addCoverageTextureEffect(GrTexture* texture, |
| 246 | const SkMatrix& matrix, |
| 247 | const GrTextureParams& params) { |
| bsalomon | 97b9ab7 | 2014-07-08 06:52:35 -0700 | [diff] [blame] | 248 | this->addCoverageEffect(GrSimpleTextureEffect::Create(texture, matrix, params))->unref(); |
| commit-bot@chromium.org | ff6ea26 | 2013-03-12 12:26:08 +0000 | [diff] [blame] | 249 | } |
| tomhudson@google.com | 676e660 | 2012-07-10 17:21:48 +0000 | [diff] [blame] | 250 | |
| robertphillips@google.com | 972265d | 2012-06-13 18:49:30 +0000 | [diff] [blame] | 251 | /** |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 252 | * When this object is destroyed it will remove any color/coverage effects from the draw state |
| 253 | * that were added after its constructor. |
| 254 | * |
| 255 | * This class has strange behavior around geometry processor. If there is a GP on the draw state |
| 256 | * it will assert that the GP is not modified until after the destructor of the ARE. If the |
| 257 | * draw state has a NULL GP when the ARE is constructed then it will reset it to null in the |
| 258 | * destructor. |
| 259 | * |
| 260 | * TODO: We'd prefer for the ARE to just save and restore the GP. However, this would add |
| 261 | * significant complexity to the multi-ref architecture for deferred drawing. Once GrDrawState |
| 262 | * and GrOptDrawState are fully separated then GrDrawState will never be in the deferred |
| 263 | * execution state and GrOptDrawState always will be (and will be immutable and therefore |
| 264 | * unable to have an ARE). At this point we can restore sanity and have the ARE save and restore |
| 265 | * the GP. |
| robertphillips@google.com | 972265d | 2012-06-13 18:49:30 +0000 | [diff] [blame] | 266 | */ |
| commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 267 | class AutoRestoreEffects : public ::SkNoncopyable { |
| robertphillips@google.com | 972265d | 2012-06-13 18:49:30 +0000 | [diff] [blame] | 268 | public: |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 269 | AutoRestoreEffects() |
| 270 | : fDrawState(NULL) |
| bsalomon | 52e9d63 | 2014-09-05 12:23:12 -0700 | [diff] [blame] | 271 | , fOriginalGPID(SK_InvalidUniqueID) |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 272 | , fColorEffectCnt(0) |
| 273 | , fCoverageEffectCnt(0) {} |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 274 | |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 275 | AutoRestoreEffects(GrDrawState* ds) |
| 276 | : fDrawState(NULL) |
| bsalomon | 52e9d63 | 2014-09-05 12:23:12 -0700 | [diff] [blame] | 277 | , fOriginalGPID(SK_InvalidUniqueID) |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 278 | , fColorEffectCnt(0) |
| 279 | , fCoverageEffectCnt(0) { |
| skia.committer@gmail.com | 5c493d5 | 2013-06-14 07:00:49 +0000 | [diff] [blame] | 280 | this->set(ds); |
| robertphillips@google.com | f09b87d | 2013-06-13 20:06:44 +0000 | [diff] [blame] | 281 | } |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 282 | |
| 283 | ~AutoRestoreEffects() { this->set(NULL); } |
| 284 | |
| bsalomon | 8f72733 | 2014-08-05 07:50:06 -0700 | [diff] [blame] | 285 | void set(GrDrawState* ds); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 286 | |
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 287 | bool isSet() const { return SkToBool(fDrawState); } |
| bsalomon | 8af0523 | 2014-06-03 06:34:58 -0700 | [diff] [blame] | 288 | |
| robertphillips@google.com | 972265d | 2012-06-13 18:49:30 +0000 | [diff] [blame] | 289 | private: |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 290 | GrDrawState* fDrawState; |
| bsalomon | 52e9d63 | 2014-09-05 12:23:12 -0700 | [diff] [blame] | 291 | uint32_t fOriginalGPID; |
| bsalomon | 9b53652 | 2014-09-05 09:18:51 -0700 | [diff] [blame] | 292 | int fColorEffectCnt; |
| 293 | int fCoverageEffectCnt; |
| robertphillips@google.com | 972265d | 2012-06-13 18:49:30 +0000 | [diff] [blame] | 294 | }; |
| 295 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 296 | /// @} |
| 297 | |
| 298 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 299 | /// @name Blending |
| 300 | //// |
| 301 | |
| 302 | /** |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 303 | * Sets the blending function coefficients. |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 304 | * |
| 305 | * The blend function will be: |
| 306 | * D' = sat(S*srcCoef + D*dstCoef) |
| 307 | * |
| 308 | * where D is the existing destination color, S is the incoming source |
| 309 | * color, and D' is the new destination color that will be written. sat() |
| 310 | * is the saturation function. |
| 311 | * |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 312 | * @param srcCoef coefficient applied to the src color. |
| 313 | * @param dstCoef coefficient applied to the dst color. |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 314 | */ |
| 315 | void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 316 | if (srcCoeff != fSrcBlend || dstCoeff != fDstBlend) { |
| 317 | fSrcBlend = srcCoeff; |
| 318 | fDstBlend = dstCoeff; |
| 319 | this->invalidateOptState(); |
| 320 | } |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 321 | #ifdef SK_DEBUG |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 322 | if (GrBlendCoeffRefsDst(dstCoeff)) { |
| 323 | GrPrintf("Unexpected dst blend coeff. Won't work correctly with coverage stages.\n"); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 324 | } |
| commit-bot@chromium.org | 24ab3b0 | 2013-08-14 21:56:37 +0000 | [diff] [blame] | 325 | if (GrBlendCoeffRefsSrc(srcCoeff)) { |
| 326 | GrPrintf("Unexpected src blend coeff. Won't work correctly with coverage stages.\n"); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 327 | } |
| 328 | #endif |
| 329 | } |
| 330 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 331 | /** |
| 332 | * Sets the blending function constant referenced by the following blending |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 333 | * coefficients: |
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 334 | * kConstC_GrBlendCoeff |
| 335 | * kIConstC_GrBlendCoeff |
| 336 | * kConstA_GrBlendCoeff |
| 337 | * kIConstA_GrBlendCoeff |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 338 | * |
| 339 | * @param constant the constant to set |
| 340 | */ |
| egdaniel | 9514d24 | 2014-07-18 06:15:43 -0700 | [diff] [blame] | 341 | void setBlendConstant(GrColor constant) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 342 | if (constant != fBlendConstant) { |
| 343 | fBlendConstant = constant; |
| 344 | this->invalidateOptState(); |
| 345 | } |
| egdaniel | 9514d24 | 2014-07-18 06:15:43 -0700 | [diff] [blame] | 346 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 347 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 348 | /// @} |
| 349 | |
| 350 | /////////////////////////////////////////////////////////////////////////// |
| 351 | /// @name View Matrix |
| 352 | //// |
| 353 | |
| 354 | /** |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 355 | * Sets the view matrix to identity and updates any installed effects to compensate for the |
| 356 | * coord system change. |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 357 | */ |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 358 | bool setIdentityViewMatrix(); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 359 | |
| bsalomon@google.com | 5b3e890 | 2012-10-05 20:13:28 +0000 | [diff] [blame] | 360 | //////////////////////////////////////////////////////////////////////////// |
| 361 | |
| 362 | /** |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 363 | * Preconcats the current view matrix and restores the previous view matrix in the destructor. |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 364 | * Effect matrices are automatically adjusted to compensate and adjusted back in the destructor. |
| bsalomon@google.com | 5b3e890 | 2012-10-05 20:13:28 +0000 | [diff] [blame] | 365 | */ |
| commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 366 | class AutoViewMatrixRestore : public ::SkNoncopyable { |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 367 | public: |
| 368 | AutoViewMatrixRestore() : fDrawState(NULL) {} |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 369 | |
| bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 370 | AutoViewMatrixRestore(GrDrawState* ds, const SkMatrix& preconcatMatrix) { |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 371 | fDrawState = NULL; |
| bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 372 | this->set(ds, preconcatMatrix); |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 373 | } |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 374 | |
| 375 | ~AutoViewMatrixRestore() { this->restore(); } |
| 376 | |
| bsalomon@google.com | a834746 | 2012-10-08 18:59:39 +0000 | [diff] [blame] | 377 | /** |
| 378 | * Can be called prior to destructor to restore the original matrix. |
| 379 | */ |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 380 | void restore(); |
| skia.committer@gmail.com | f467ce7 | 2012-10-09 02:01:37 +0000 | [diff] [blame] | 381 | |
| bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 382 | void set(GrDrawState* drawState, const SkMatrix& preconcatMatrix); |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 383 | |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 384 | /** Sets the draw state's matrix to identity. This can fail because the current view matrix |
| 385 | is not invertible. */ |
| 386 | bool setIdentity(GrDrawState* drawState); |
| bsalomon@google.com | 2fdcdeb | 2012-10-08 17:15:55 +0000 | [diff] [blame] | 387 | |
| bsalomon@google.com | 5b3e890 | 2012-10-05 20:13:28 +0000 | [diff] [blame] | 388 | private: |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 389 | void doEffectCoordChanges(const SkMatrix& coordChangeMatrix); |
| 390 | |
| 391 | GrDrawState* fDrawState; |
| 392 | SkMatrix fViewMatrix; |
| 393 | int fNumColorStages; |
| joshualitt | bd769d0 | 2014-09-04 08:56:46 -0700 | [diff] [blame] | 394 | bool fHasGeometryProcessor; |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 395 | SkAutoSTArray<8, GrEffectStage::SavedCoordChange> fSavedCoordChanges; |
| bsalomon@google.com | 5b3e890 | 2012-10-05 20:13:28 +0000 | [diff] [blame] | 396 | }; |
| 397 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 398 | /// @} |
| 399 | |
| 400 | /////////////////////////////////////////////////////////////////////////// |
| 401 | /// @name Render Target |
| 402 | //// |
| 403 | |
| 404 | /** |
| bsalomon@google.com | ca43208 | 2013-01-23 19:53:46 +0000 | [diff] [blame] | 405 | * Sets the render-target used at the next drawing call |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 406 | * |
| 407 | * @param target The render target to set. |
| 408 | */ |
| bsalomon | 2a9ca78 | 2014-09-05 14:27:43 -0700 | [diff] [blame] | 409 | void setRenderTarget(GrRenderTarget* target) { |
| 410 | fRenderTarget.setResource(SkSafeRef(target), GrProgramResource::kWrite_IOType); |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 411 | this->invalidateOptState(); |
| bsalomon | 2a9ca78 | 2014-09-05 14:27:43 -0700 | [diff] [blame] | 412 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 413 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 414 | /// @} |
| 415 | |
| 416 | /////////////////////////////////////////////////////////////////////////// |
| 417 | /// @name Stencil |
| 418 | //// |
| 419 | |
| 420 | /** |
| 421 | * Sets the stencil settings to use for the next draw. |
| 422 | * Changing the clip has the side-effect of possibly zeroing |
| 423 | * out the client settable stencil bits. So multipass algorithms |
| 424 | * using stencil should not change the clip between passes. |
| 425 | * @param settings the stencil settings to use. |
| 426 | */ |
| 427 | void setStencil(const GrStencilSettings& settings) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 428 | if (settings != fStencilSettings) { |
| 429 | fStencilSettings = settings; |
| 430 | this->invalidateOptState(); |
| 431 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /** |
| 435 | * Shortcut to disable stencil testing and ops. |
| 436 | */ |
| 437 | void disableStencil() { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 438 | if (!fStencilSettings.isDisabled()) { |
| 439 | fStencilSettings.setDisabled(); |
| 440 | this->invalidateOptState(); |
| 441 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 442 | } |
| 443 | |
| bsalomon | 2ed5ef8 | 2014-07-07 08:44:05 -0700 | [diff] [blame] | 444 | GrStencilSettings* stencil() { return &fStencilSettings; } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 445 | |
| 446 | /// @} |
| 447 | |
| 448 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 449 | /// @name State Flags |
| 450 | //// |
| tomhudson@google.com | 62b0968 | 2011-11-09 16:39:17 +0000 | [diff] [blame] | 451 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 452 | void resetStateFlags() { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 453 | if (0 != fFlagBits) { |
| 454 | fFlagBits = 0; |
| 455 | this->invalidateOptState(); |
| 456 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Enable render state settings. |
| 461 | * |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 462 | * @param stateBits bitfield of StateBits specifying the states to enable |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 463 | */ |
| 464 | void enableState(uint32_t stateBits) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 465 | if (stateBits & ~fFlagBits) { |
| 466 | fFlagBits |= stateBits; |
| 467 | this->invalidateOptState(); |
| 468 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Disable render state settings. |
| 473 | * |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 474 | * @param stateBits bitfield of StateBits specifying the states to disable |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 475 | */ |
| 476 | void disableState(uint32_t stateBits) { |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 477 | if (stateBits & fFlagBits) { |
| 478 | fFlagBits &= ~(stateBits); |
| 479 | this->invalidateOptState(); |
| 480 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| bsalomon@google.com | d5d69ff | 2012-10-04 19:42:00 +0000 | [diff] [blame] | 483 | /** |
| 484 | * Enable or disable stateBits based on a boolean. |
| 485 | * |
| bsalomon@google.com | 1e269b5 | 2012-10-15 14:25:31 +0000 | [diff] [blame] | 486 | * @param stateBits bitfield of StateBits to enable or disable |
| bsalomon@google.com | d5d69ff | 2012-10-04 19:42:00 +0000 | [diff] [blame] | 487 | * @param enable if true enable stateBits, otherwise disable |
| 488 | */ |
| 489 | void setState(uint32_t stateBits, bool enable) { |
| 490 | if (enable) { |
| 491 | this->enableState(stateBits); |
| 492 | } else { |
| 493 | this->disableState(stateBits); |
| 494 | } |
| 495 | } |
| 496 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 497 | /// @} |
| 498 | |
| 499 | /////////////////////////////////////////////////////////////////////////// |
| 500 | /// @name Face Culling |
| 501 | //// |
| 502 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 503 | /** |
| 504 | * Controls whether clockwise, counterclockwise, or both faces are drawn. |
| 505 | * @param face the face(s) to draw. |
| 506 | */ |
| 507 | void setDrawFace(DrawFace face) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 508 | SkASSERT(kInvalid_DrawFace != face); |
| bsalomon | 2ed5ef8 | 2014-07-07 08:44:05 -0700 | [diff] [blame] | 509 | fDrawFace = face; |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 512 | /// @} |
| 513 | |
| 514 | /////////////////////////////////////////////////////////////////////////// |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 515 | /// @name Hints |
| 516 | /// Hints that when provided can enable optimizations. |
| 517 | //// |
| 518 | |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 519 | void setHint(Hints hint, bool value) { fHints = value ? (fHints | hint) : (fHints & ~hint); } |
| 520 | |
| 521 | /// @} |
| 522 | |
| 523 | /////////////////////////////////////////////////////////////////////////// |
| tomhudson@google.com | 62b0968 | 2011-11-09 16:39:17 +0000 | [diff] [blame] | 524 | |
| bsalomon | 838f62d | 2014-08-05 07:15:57 -0700 | [diff] [blame] | 525 | /** Return type for CombineIfPossible. */ |
| 526 | enum CombinedState { |
| 527 | /** The GrDrawStates cannot be combined. */ |
| 528 | kIncompatible_CombinedState, |
| 529 | /** Either draw state can be used in place of the other. */ |
| 530 | kAOrB_CombinedState, |
| 531 | /** Use the first draw state. */ |
| 532 | kA_CombinedState, |
| 533 | /** Use the second draw state. */ |
| 534 | kB_CombinedState, |
| 535 | }; |
| 536 | |
| 537 | /** This function determines whether the GrDrawStates used for two draws can be combined into |
| 538 | a single GrDrawState. This is used to avoid storing redundant GrDrawStates and to determine |
| 539 | if draws can be batched. The return value indicates whether combining is possible and, if |
| 540 | so, which of the two inputs should be used. */ |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 541 | static CombinedState CombineIfPossible(const GrDrawState& a, const GrDrawState& b, |
| 542 | const GrDrawTargetCaps& caps); |
| bsalomon | 72336ed | 2014-08-05 07:35:56 -0700 | [diff] [blame] | 543 | |
| bsalomon | 8f72733 | 2014-08-05 07:50:06 -0700 | [diff] [blame] | 544 | GrDrawState& operator= (const GrDrawState& that); |
| bsalomon@google.com | 3d0835b | 2011-12-08 16:12:03 +0000 | [diff] [blame] | 545 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 546 | /** |
| 547 | * Returns a snapshot of the current optimized state. If the current drawState has a valid |
| 548 | * cached optimiezed state it will simply return a pointer to it otherwise it will create a new |
| 549 | * GrOptDrawState. In all cases the GrOptDrawState is reffed and ownership is given to the |
| 550 | * caller. |
| 551 | */ |
| 552 | GrOptDrawState* createOptState() const; |
| 553 | |
| bsalomon@google.com | 3d0835b | 2011-12-08 16:12:03 +0000 | [diff] [blame] | 554 | private: |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 555 | void invalidateOptState() const { |
| 556 | SkSafeSetNull(fCachedOptState); |
| 557 | fBlendOptFlags = kInvalid_BlendOptFlag; |
| 558 | } |
| 559 | |
| bsalomon | 8f72733 | 2014-08-05 07:50:06 -0700 | [diff] [blame] | 560 | void onReset(const SkMatrix* initialViewMatrix); |
| bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 561 | |
| egdaniel | 21aed57 | 2014-08-26 12:24:06 -0700 | [diff] [blame] | 562 | void invalidateBlendOptFlags() { |
| 563 | fBlendOptFlags = kInvalid_BlendOptFlag; |
| 564 | } |
| bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 565 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 566 | // Some of the auto restore objects assume that no effects are removed during their lifetime. |
| 567 | // This is used to assert that this condition holds. |
| commit-bot@chromium.org | 1acc3d7 | 2013-09-06 23:13:05 +0000 | [diff] [blame] | 568 | SkDEBUGCODE(int fBlockEffectRemovalCnt;) |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 569 | |
| egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 570 | void internalSetVertexAttribs(const GrVertexAttrib attribs[], int count, size_t stride); |
| robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 571 | |
| egdaniel | 3658f38 | 2014-09-15 07:01:59 -0700 | [diff] [blame] | 572 | mutable GrOptDrawState* fCachedOptState; |
| 573 | |
| egdaniel | 21aed57 | 2014-08-26 12:24:06 -0700 | [diff] [blame] | 574 | typedef GrRODrawState INHERITED; |
| tomhudson@google.com | 9381363 | 2011-10-27 20:21:16 +0000 | [diff] [blame] | 575 | }; |
| 576 | |
| 577 | #endif |