Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: src/gpu/GrPrimitiveProcessor.h

Issue 2201613002: Revert of GrFP can express distance vector field req., program builder declares variable for it (Closed) Base URL: https://skia.googlesource.com/skia@dvonbeck-bevel-api-change
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrPipelineBuilder.cpp ('k') | src/gpu/glsl/GrGLSLFragmentProcessor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/gpu/GrPipelineBuilder.cpp ('k') | src/gpu/glsl/GrGLSLFragmentProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698