| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef GrPrimitiveProcessor_DEFINED | 8 #ifndef GrPrimitiveProcessor_DEFINED |
| 9 #define GrPrimitiveProcessor_DEFINED | 9 #define GrPrimitiveProcessor_DEFINED |
| 10 | 10 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 /** | 215 /** |
| 216 * If non-null, overrides the dest color returned by GrGLSLFragmentShaderBui
lder::dstColor(). | 216 * If non-null, overrides the dest color returned by GrGLSLFragmentShaderBui
lder::dstColor(). |
| 217 */ | 217 */ |
| 218 virtual const char* getDestColorOverride() const { return nullptr; } | 218 virtual const char* getDestColorOverride() const { return nullptr; } |
| 219 | 219 |
| 220 virtual float getSampleShading() const { | 220 virtual float getSampleShading() const { |
| 221 return 0.0; | 221 return 0.0; |
| 222 } | 222 } |
| 223 | 223 |
| 224 /* Sub-class should override and return true if this primitive processor imp
lements the distance | |
| 225 * vector field, a field of vectors to the nearest point in the edge of the
shape. */ | |
| 226 virtual bool implementsDistanceVector() const { return false; } | |
| 227 | |
| 228 protected: | 224 protected: |
| 229 GrPrimitiveProcessor() : fVertexStride(0) {} | 225 GrPrimitiveProcessor() : fVertexStride(0) {} |
| 230 | 226 |
| 231 enum { kPreallocAttribCnt = 8 }; | 227 enum { kPreallocAttribCnt = 8 }; |
| 232 SkSTArray<kPreallocAttribCnt, Attribute> fAttribs; | 228 SkSTArray<kPreallocAttribCnt, Attribute> fAttribs; |
| 233 size_t fVertexStride; | 229 size_t fVertexStride; |
| 234 | 230 |
| 235 private: | 231 private: |
| 236 void notifyRefCntIsZero() const final {}; | 232 void notifyRefCntIsZero() const final {}; |
| 237 virtual bool hasExplicitLocalCoords() const = 0; | 233 virtual bool hasExplicitLocalCoords() const = 0; |
| 238 | 234 |
| 239 typedef GrProcessor INHERITED; | 235 typedef GrProcessor INHERITED; |
| 240 }; | 236 }; |
| 241 | 237 |
| 242 #endif | 238 #endif |
| OLD | NEW |