joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 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 GrGeometryProcessor_DEFINED |
| 9 | #define GrGeometryProcessor_DEFINED |
| 10 | |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 11 | #include "GrColor.h" |
joshualitt | c07379d | 2014-11-20 14:50:39 -0800 | [diff] [blame] | 12 | #include "GrGeometryData.h" |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 13 | #include "GrProcessor.h" |
bsalomon | 6251d17 | 2014-10-15 10:50:36 -0700 | [diff] [blame] | 14 | #include "GrShaderVar.h" |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 15 | |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 16 | /* |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 17 | * The GrPrimitiveProcessor represents some kind of geometric primitive. This includes the shape |
| 18 | * of the primitive and the inherent color of the primitive. The GrPrimitiveProcessor is |
| 19 | * responsible for providing a color and coverage input into the Ganesh rendering pipeline. Through |
| 20 | * optimization, Ganesh may decide a different color, no color, and / or no coverage are required |
| 21 | * from the GrPrimitiveProcessor, so the GrPrimitiveProcessor must be able to support this |
| 22 | * functionality. We also use the GrPrimitiveProcessor to make batching decisions. |
| 23 | * |
| 24 | * There are two feedback loops between the GrFragmentProcessors, the GrXferProcessor, and the |
| 25 | * GrPrimitiveProcessor. These loops run on the CPU and compute any invariant components which |
| 26 | * might be useful for correctness / optimization decisions. The GrPrimitiveProcessor seeds these |
| 27 | * loops, one with initial color and one with initial coverage, in its |
| 28 | * onComputeInvariantColor / Coverage calls. These seed values are processed by the subsequent |
| 29 | * stages of the rendering pipeline and the output is then fed back into the GrPrimitiveProcessor in |
| 30 | * the initBatchTracker call, where the GrPrimitiveProcessor can then initialize the GrBatchTracker |
| 31 | * struct with the appropriate values. |
| 32 | * |
| 33 | * We are evolving this system to move towards generating geometric meshes and their associated |
| 34 | * vertex data after we have batched and reordered draws. This system, known as 'deferred geometry' |
| 35 | * will allow the GrPrimitiveProcessor much greater control over how data is transmitted to shaders. |
| 36 | * |
| 37 | * In a deferred geometry world, the GrPrimitiveProcessor can always 'batch' To do this, each |
| 38 | * primitive type is associated with one GrPrimitiveProcessor, who has complete control of how |
| 39 | * it draws. Each primitive draw will bundle all required data to perform the draw, and these |
| 40 | * bundles of data will be owned by an instance of the associated GrPrimitiveProcessor. Bundles |
| 41 | * can be updated alongside the GrBatchTracker struct itself, ultimately allowing the |
| 42 | * GrPrimitiveProcessor complete control of how it gets data into the fragment shader as long as |
| 43 | * it emits the appropriate color, or none at all, as directed. |
| 44 | */ |
| 45 | |
| 46 | /* |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 47 | * A struct for tracking batching decisions. While this lives on GrOptState, it is managed |
| 48 | * entirely by the derived classes of the GP. |
| 49 | */ |
| 50 | class GrBatchTracker { |
| 51 | public: |
| 52 | template <typename T> const T& cast() const { |
| 53 | SkASSERT(sizeof(T) <= kMaxSize); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 54 | return *reinterpret_cast<const T*>(fData.get()); |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | template <typename T> T* cast() { |
| 58 | SkASSERT(sizeof(T) <= kMaxSize); |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 59 | return reinterpret_cast<T*>(fData.get()); |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static const size_t kMaxSize = 32; |
| 63 | |
| 64 | private: |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 65 | SkAlignedSStorage<kMaxSize> fData; |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 66 | }; |
| 67 | |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 68 | class GrGLCaps; |
| 69 | class GrGLGeometryProcessor; |
joshualitt | 87f48d9 | 2014-12-04 10:41:40 -0800 | [diff] [blame] | 70 | class GrOptDrawState; |
| 71 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 72 | struct GrInitInvariantOutput; |
| 73 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 74 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 75 | /* |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 76 | * This enum is shared by GrPrimitiveProcessors and GrGLPrimitiveProcessors to coordinate shaders |
| 77 | * with vertex attributes / uniforms. |
| 78 | */ |
| 79 | enum GrGPInput { |
| 80 | kAllOnes_GrGPInput, |
| 81 | kAttribute_GrGPInput, |
| 82 | kUniform_GrGPInput, |
| 83 | kIgnored_GrGPInput, |
| 84 | }; |
| 85 | |
| 86 | /* |
| 87 | * GrPrimitiveProcessor defines an interface which all subclasses must implement. All |
| 88 | * GrPrimitiveProcessors must proivide seed color and coverage for the Ganesh color / coverage |
| 89 | * pipelines, and they must provide some notion of equality |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 90 | */ |
| 91 | class GrPrimitiveProcessor : public GrProcessor { |
| 92 | public: |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 93 | // TODO let the PrimProc itself set this in its setData call, this should really live on the |
| 94 | // bundle of primitive data |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 95 | const SkMatrix& viewMatrix() const { return fViewMatrix; } |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 96 | const SkMatrix& localMatrix() const { return fLocalMatrix; } |
| 97 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 98 | /* |
| 99 | * This struct allows the optstate to communicate requirements to the GrPrimitiveProcessor. |
| 100 | */ |
| 101 | struct InitBT { |
| 102 | bool fColorIgnored; |
| 103 | bool fCoverageIgnored; |
| 104 | GrColor fOverrideColor; |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 105 | bool fUsesLocalCoords; |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | virtual void initBatchTracker(GrBatchTracker*, const InitBT&) const = 0; |
| 109 | |
| 110 | virtual bool canMakeEqual(const GrBatchTracker& mine, |
| 111 | const GrPrimitiveProcessor& that, |
| 112 | const GrBatchTracker& theirs) const = 0; |
| 113 | |
| 114 | /* |
| 115 | * We always call canMakeEqual before makeEqual so there is no need to do any kind of equality |
| 116 | * testing here |
| 117 | * TODO make this pure virtual when primProcs can actually use it |
| 118 | */ |
| 119 | virtual void makeEqual(GrBatchTracker*, const GrBatchTracker&) const {} |
| 120 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 121 | virtual void getInvariantOutputColor(GrInitInvariantOutput* out) const = 0; |
| 122 | virtual void getInvariantOutputCoverage(GrInitInvariantOutput* out) const = 0; |
| 123 | |
egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 124 | /** |
| 125 | * Sets a unique key on the GrProcessorKeyBuilder that is directly associated with this geometry |
| 126 | * processor's GL backend implementation. |
| 127 | */ |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 128 | virtual void getGLProcessorKey(const GrBatchTracker& bt, |
| 129 | const GrGLCaps& caps, |
| 130 | GrProcessorKeyBuilder* b) const = 0; |
| 131 | |
| 132 | |
| 133 | /** Returns a new instance of the appropriate *GL* implementation class |
| 134 | for the given GrProcessor; caller is responsible for deleting |
| 135 | the object. */ |
| 136 | virtual GrGLGeometryProcessor* createGLInstance(const GrBatchTracker& bt) const = 0; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 137 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 138 | protected: |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 139 | GrPrimitiveProcessor(const SkMatrix& viewMatrix, const SkMatrix& localMatrix) |
| 140 | : fViewMatrix(viewMatrix) |
| 141 | , fLocalMatrix(localMatrix) {} |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 142 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 143 | /* |
| 144 | * CanCombineOutput will return true if two draws are 'batchable' from a color perspective. |
| 145 | * TODO remove this when GPs can upgrade to attribute color |
| 146 | */ |
| 147 | static bool CanCombineOutput(GrGPInput left, GrColor lColor, GrGPInput right, GrColor rColor) { |
| 148 | if (left != right) { |
| 149 | return false; |
| 150 | } |
| 151 | |
| 152 | if (kUniform_GrGPInput == left && lColor != rColor) { |
| 153 | return false; |
| 154 | } |
| 155 | |
| 156 | return true; |
| 157 | } |
| 158 | |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 159 | static bool CanCombineLocalMatrices(const GrPrimitiveProcessor& left, |
| 160 | bool leftUsesLocalCoords, |
| 161 | const GrPrimitiveProcessor& right, |
| 162 | bool rightUsesLocalCoords) { |
| 163 | if (leftUsesLocalCoords != rightUsesLocalCoords) { |
| 164 | return false; |
| 165 | } |
| 166 | |
| 167 | if (leftUsesLocalCoords && !left.localMatrix().cheapEqualTo(right.localMatrix())) { |
| 168 | return false; |
| 169 | } |
| 170 | return true; |
| 171 | } |
| 172 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 173 | private: |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 174 | SkMatrix fViewMatrix; |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 175 | SkMatrix fLocalMatrix; |
| 176 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 177 | typedef GrProcessor INHERITED; |
| 178 | }; |
| 179 | |
| 180 | /** |
| 181 | * A GrGeometryProcessor is a flexible method for rendering a primitive. The GrGeometryProcessor |
| 182 | * has complete control over vertex attributes and uniforms(aside from the render target) but it |
| 183 | * must obey the same contract as any GrPrimitiveProcessor, specifically it must emit a color and |
| 184 | * coverage into the fragment shader. Where this color and coverage come from is completely the |
| 185 | * responsibility of the GrGeometryProcessor. |
| 186 | */ |
| 187 | class GrGeometryProcessor : public GrPrimitiveProcessor { |
| 188 | public: |
| 189 | // TODO the Hint can be handled in a much more clean way when we have deferred geometry or |
| 190 | // atleast bundles |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 191 | GrGeometryProcessor(GrColor color, |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 192 | const SkMatrix& viewMatrix = SkMatrix::I(), |
| 193 | const SkMatrix& localMatrix = SkMatrix::I(), |
| 194 | bool opaqueVertexColors = false) |
| 195 | : INHERITED(viewMatrix, localMatrix) |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 196 | , fVertexStride(0) |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 197 | , fColor(color) |
| 198 | , fOpaqueVertexColors(opaqueVertexColors) |
| 199 | , fWillUseGeoShader(false) |
| 200 | , fHasVertexColor(false) |
| 201 | , fHasLocalCoords(false) {} |
| 202 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 203 | /* |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 204 | * This is a safeguard to prevent GPs from going beyond platform specific attribute limits. |
| 205 | * This number can almost certainly be raised if required. |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 206 | */ |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 207 | static const int kMaxVertexAttribs = 6; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 208 | |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 209 | struct GrAttribute { |
| 210 | GrAttribute(const char* name, GrVertexAttribType type) |
| 211 | : fName(name) |
| 212 | , fType(type) |
| 213 | , fOffset(SkAlign4(GrVertexAttribTypeSize(type))) {} |
| 214 | const char* fName; |
| 215 | GrVertexAttribType fType; |
| 216 | size_t fOffset; |
| 217 | }; |
| 218 | |
| 219 | typedef SkTArray<GrAttribute, true> VertexAttribArray; |
| 220 | |
| 221 | const VertexAttribArray& getAttribs() const { return fAttribs; } |
| 222 | |
| 223 | // Returns the vertex stride of the GP. A common use case is to request geometry from a |
| 224 | // drawtarget based off of the stride, and to populate this memory using an implicit array of |
| 225 | // structs. In this case, it is best to assert the vertexstride == sizeof(VertexStruct). |
| 226 | size_t getVertexStride() const { return fVertexStride; } |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 227 | |
joshualitt | 74077b9 | 2014-10-24 11:26:03 -0700 | [diff] [blame] | 228 | bool willUseGeoShader() const { return fWillUseGeoShader; } |
| 229 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 230 | /* |
| 231 | * In an ideal world, two GrGeometryProcessors with the same class id and texture accesses |
| 232 | * would ALWAYS be able to batch together. If two GrGeometryProcesosrs are the same then we |
| 233 | * will only keep one of them. The remaining GrGeometryProcessor then updates its |
| 234 | * GrBatchTracker to incorporate the draw information from the GrGeometryProcessor we discard. |
| 235 | * Any bundles associated with the discarded GrGeometryProcessor will be attached to the |
| 236 | * remaining GrGeometryProcessor. |
| 237 | */ |
| 238 | bool canMakeEqual(const GrBatchTracker& mine, |
| 239 | const GrPrimitiveProcessor& that, |
| 240 | const GrBatchTracker& theirs) const SK_OVERRIDE { |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 241 | if (this->classID() != that.classID() || !this->hasSameTextureAccesses(that)) { |
bsalomon | 0e08fc1 | 2014-10-15 08:19:04 -0700 | [diff] [blame] | 242 | return false; |
| 243 | } |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 244 | |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 245 | // TODO let the GPs decide this |
| 246 | if (!this->viewMatrix().cheapEqualTo(that.viewMatrix())) { |
| 247 | return false; |
| 248 | } |
| 249 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 250 | // TODO remove the hint |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 251 | const GrGeometryProcessor& other = that.cast<GrGeometryProcessor>(); |
| 252 | if (fHasVertexColor && fOpaqueVertexColors != other.fOpaqueVertexColors) { |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 253 | return false; |
| 254 | } |
| 255 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 256 | // TODO this equality test should really be broken up, some of this can live on the batch |
| 257 | // tracker test and some of this should be in bundles |
| 258 | if (!this->onIsEqual(other)) { |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 259 | return false; |
| 260 | } |
| 261 | |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 262 | return this->onCanMakeEqual(mine, other, theirs); |
bsalomon | 0e08fc1 | 2014-10-15 08:19:04 -0700 | [diff] [blame] | 263 | } |
| 264 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 265 | |
| 266 | // TODO we can remove color from the GrGeometryProcessor base class once we have bundles of |
| 267 | // primitive data |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 268 | GrColor color() const { return fColor; } |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 269 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 270 | // TODO this is a total hack until the gp can do deferred geometry |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 271 | bool hasVertexColor() const { return fHasVertexColor; } |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 272 | |
| 273 | // TODO this is a total hack until gp can setup and manage local coords |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 274 | bool hasLocalCoords() const { return fHasLocalCoords; } |
| 275 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 276 | void getInvariantOutputColor(GrInitInvariantOutput* out) const SK_OVERRIDE; |
| 277 | void getInvariantOutputCoverage(GrInitInvariantOutput* out) const SK_OVERRIDE; |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 278 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 279 | protected: |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 280 | /* |
| 281 | * An optional simple helper function to determine by what means the GrGeometryProcessor should |
| 282 | * use to provide color. If we are given an override color(ie the given overridecolor is NOT |
| 283 | * GrColor_ILLEGAL) then we must always emit that color(currently overrides are only supported |
| 284 | * via uniform, but with deferred Geometry we could use attributes). Otherwise, if our color is |
| 285 | * ignored then we should not emit a color. Lastly, if we don't have vertex colors then we must |
| 286 | * emit a color via uniform |
| 287 | * TODO this function changes quite a bit with deferred geometry. There the GrGeometryProcessor |
| 288 | * can upload a new color via attribute if needed. |
| 289 | */ |
| 290 | static GrGPInput GetColorInputType(GrColor* color, GrColor primitiveColor, const InitBT& init, |
| 291 | bool hasVertexColor) { |
| 292 | if (init.fColorIgnored) { |
| 293 | *color = GrColor_ILLEGAL; |
| 294 | return kIgnored_GrGPInput; |
| 295 | } else if (GrColor_ILLEGAL != init.fOverrideColor) { |
| 296 | *color = init.fOverrideColor; |
| 297 | return kUniform_GrGPInput; |
| 298 | } |
| 299 | |
| 300 | *color = primitiveColor; |
| 301 | if (hasVertexColor) { |
| 302 | return kAttribute_GrGPInput; |
| 303 | } else { |
| 304 | return kUniform_GrGPInput; |
| 305 | } |
| 306 | } |
| 307 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 308 | /** |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 309 | * Subclasses call this from their constructor to register vertex attributes. Attributes |
| 310 | * will be padded to the nearest 4 bytes for performance reasons. |
| 311 | * TODO After deferred geometry, we should do all of this inline in GenerateGeometry alongside |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 312 | * the struct used to actually populate the attributes. This is all extremely fragile, vertex |
| 313 | * attributes have to be added in the order they will appear in the struct which maps memory. |
| 314 | * The processor key should reflect the vertex attributes, or there lack thereof in the |
| 315 | * GrGeometryProcessor. |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 316 | */ |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 317 | const GrAttribute& addVertexAttrib(const GrAttribute& attribute) { |
| 318 | fVertexStride += attribute.fOffset; |
| 319 | return fAttribs.push_back(attribute); |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 320 | } |
| 321 | |
joshualitt | 74077b9 | 2014-10-24 11:26:03 -0700 | [diff] [blame] | 322 | void setWillUseGeoShader() { fWillUseGeoShader = true; } |
| 323 | |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 324 | // TODO hack see above |
| 325 | void setHasVertexColor() { fHasVertexColor = true; } |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 326 | void setHasLocalCoords() { fHasLocalCoords = true; } |
| 327 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 328 | virtual void onGetInvariantOutputColor(GrInitInvariantOutput*) const {} |
| 329 | virtual void onGetInvariantOutputCoverage(GrInitInvariantOutput*) const = 0; |
| 330 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 331 | private: |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 332 | virtual bool onCanMakeEqual(const GrBatchTracker& mine, |
| 333 | const GrGeometryProcessor& that, |
| 334 | const GrBatchTracker& theirs) const = 0; |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 335 | // TODO delete this when we have more advanced equality testing via bundles and the BT |
bsalomon | 0e08fc1 | 2014-10-15 08:19:04 -0700 | [diff] [blame] | 336 | virtual bool onIsEqual(const GrGeometryProcessor&) const = 0; |
| 337 | |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 338 | SkSTArray<kMaxVertexAttribs, GrAttribute, true> fAttribs; |
| 339 | size_t fVertexStride; |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 340 | GrColor fColor; |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 341 | bool fOpaqueVertexColors; |
joshualitt | 74077b9 | 2014-10-24 11:26:03 -0700 | [diff] [blame] | 342 | bool fWillUseGeoShader; |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 343 | bool fHasVertexColor; |
joshualitt | 2dd1ae0 | 2014-12-03 06:24:10 -0800 | [diff] [blame] | 344 | bool fHasLocalCoords; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 345 | |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 346 | typedef GrPrimitiveProcessor INHERITED; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 347 | }; |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 348 | |
| 349 | /* |
| 350 | * The path equivalent of the GP. For now this just manages color. In the long term we plan on |
| 351 | * extending this class to handle all nvpr uniform / varying / program work. |
| 352 | */ |
| 353 | class GrPathProcessor : public GrPrimitiveProcessor { |
| 354 | public: |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 355 | static GrPathProcessor* Create(GrColor color, |
| 356 | const SkMatrix& viewMatrix = SkMatrix::I(), |
| 357 | const SkMatrix& localMatrix = SkMatrix::I()) { |
| 358 | return SkNEW_ARGS(GrPathProcessor, (color, viewMatrix, localMatrix)); |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 359 | } |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 360 | |
| 361 | void initBatchTracker(GrBatchTracker*, const InitBT&) const SK_OVERRIDE; |
| 362 | |
| 363 | bool canMakeEqual(const GrBatchTracker& mine, |
| 364 | const GrPrimitiveProcessor& that, |
| 365 | const GrBatchTracker& theirs) const SK_OVERRIDE; |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 366 | |
| 367 | const char* name() const SK_OVERRIDE { return "PathProcessor"; } |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 368 | |
| 369 | GrColor color() const { return fColor; } |
| 370 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 371 | void getInvariantOutputColor(GrInitInvariantOutput* out) const SK_OVERRIDE; |
| 372 | void getInvariantOutputCoverage(GrInitInvariantOutput* out) const SK_OVERRIDE; |
| 373 | |
joshualitt | 9b98932 | 2014-12-15 14:16:27 -0800 | [diff] [blame] | 374 | virtual void getGLProcessorKey(const GrBatchTracker& bt, |
| 375 | const GrGLCaps& caps, |
| 376 | GrProcessorKeyBuilder* b) const SK_OVERRIDE; |
| 377 | |
| 378 | virtual GrGLGeometryProcessor* createGLInstance(const GrBatchTracker& bt) const SK_OVERRIDE; |
| 379 | |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 380 | private: |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame^] | 381 | GrPathProcessor(GrColor color, const SkMatrix& viewMatrix, const SkMatrix& localMatrix); |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 382 | GrColor fColor; |
| 383 | |
joshualitt | 290c09b | 2014-12-19 13:45:20 -0800 | [diff] [blame] | 384 | typedef GrPrimitiveProcessor INHERITED; |
joshualitt | 56995b5 | 2014-12-11 15:44:02 -0800 | [diff] [blame] | 385 | }; |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 386 | #endif |