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