blob: e5222bf80a41ccb3067cc7b936ca050436d52b2b [file] [log] [blame]
joshualittb0a8a372014-09-23 09:50:21 -07001/*
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
joshualitt8072caa2015-02-12 14:20:52 -080011#include "GrPrimitiveProcessor.h"
joshualitt9b989322014-12-15 14:16:27 -080012
13/**
14 * A GrGeometryProcessor is a flexible method for rendering a primitive. The GrGeometryProcessor
15 * has complete control over vertex attributes and uniforms(aside from the render target) but it
16 * must obey the same contract as any GrPrimitiveProcessor, specifically it must emit a color and
17 * coverage into the fragment shader. Where this color and coverage come from is completely the
18 * responsibility of the GrGeometryProcessor.
19 */
20class GrGeometryProcessor : public GrPrimitiveProcessor {
21public:
joshualitte3ababe2015-05-15 07:56:07 -070022 GrGeometryProcessor()
ethannicholas22793252016-01-30 09:59:10 -080023 : fWillUseGeoShader(false)
ethannicholas28ef4452016-03-25 09:26:03 -070024 , fLocalCoordsType(kUnused_LocalCoordsType)
25 , fSampleShading(0.0) {}
joshualitt9b989322014-12-15 14:16:27 -080026
mtkleinf0599002015-07-13 06:18:39 -070027 bool willUseGeoShader() const override { return fWillUseGeoShader; }
joshualitt74077b92014-10-24 11:26:03 -070028
joshualittb2aa7cb2015-08-05 11:05:22 -070029 bool hasExplicitLocalCoords() const override {
30 return kHasExplicit_LocalCoordsType == fLocalCoordsType;
31 }
32
ethannicholas28ef4452016-03-25 09:26:03 -070033 /**
34 * Returns the minimum fraction of samples for which the fragment shader will be run. For
35 * instance, if sampleShading is 0.5 in MSAA16 mode, the fragment shader will run a minimum of
36 * 8 times per pixel. The default value is zero.
37 */
38 float getSampleShading() const override {
39 return fSampleShading;
40 }
41
joshualittb0a8a372014-09-23 09:50:21 -070042protected:
43 /**
joshualitt2dd1ae02014-12-03 06:24:10 -080044 * Subclasses call this from their constructor to register vertex attributes. Attributes
45 * will be padded to the nearest 4 bytes for performance reasons.
46 * TODO After deferred geometry, we should do all of this inline in GenerateGeometry alongside
joshualitt9b989322014-12-15 14:16:27 -080047 * the struct used to actually populate the attributes. This is all extremely fragile, vertex
48 * attributes have to be added in the order they will appear in the struct which maps memory.
49 * The processor key should reflect the vertex attributes, or there lack thereof in the
50 * GrGeometryProcessor.
joshualittb0a8a372014-09-23 09:50:21 -070051 */
bsalomon6cb807b2016-08-17 11:33:39 -070052 const Attribute& addVertexAttrib(const char* name, GrVertexAttribType type,
53 GrSLPrecision precision = kDefault_GrSLPrecision) {
Brian Osman33aa2c72017-04-05 09:26:15 -040054 precision = (kDefault_GrSLPrecision == precision) ? kMedium_GrSLPrecision : precision;
bsalomon6cb807b2016-08-17 11:33:39 -070055 fAttribs.emplace_back(name, type, precision);
56 fVertexStride += fAttribs.back().fOffset;
bsalomon7dbd45d2016-03-23 10:40:53 -070057 return fAttribs.back();
joshualittb0a8a372014-09-23 09:50:21 -070058 }
59
joshualitt74077b92014-10-24 11:26:03 -070060 void setWillUseGeoShader() { fWillUseGeoShader = true; }
61
joshualittb2aa7cb2015-08-05 11:05:22 -070062 /**
63 * If a GrFragmentProcessor in the GrPipeline needs localCoods, we will provide them in one of
64 * three ways
65 * 1) LocalCoordTransform * Position - in Shader
66 * 2) LocalCoordTransform * ExplicitLocalCoords- in Shader
67 * 3) A transformation on the CPU uploaded via vertex attribute
joshualittb2aa7cb2015-08-05 11:05:22 -070068 */
69 enum LocalCoordsType {
70 kUnused_LocalCoordsType,
71 kHasExplicit_LocalCoordsType,
72 kHasTransformed_LocalCoordsType
73 };
74
75 void setHasExplicitLocalCoords() {
76 SkASSERT(kUnused_LocalCoordsType == fLocalCoordsType);
77 fLocalCoordsType = kHasExplicit_LocalCoordsType;
78 }
79 void setHasTransformedLocalCoords() {
80 SkASSERT(kUnused_LocalCoordsType == fLocalCoordsType);
81 fLocalCoordsType = kHasTransformed_LocalCoordsType;
82 }
joshualitt2dd1ae02014-12-03 06:24:10 -080083
ethannicholas28ef4452016-03-25 09:26:03 -070084 void setSampleShading(float sampleShading) {
85 fSampleShading = sampleShading;
86 }
87
joshualittb0a8a372014-09-23 09:50:21 -070088private:
joshualitt74077b92014-10-24 11:26:03 -070089 bool fWillUseGeoShader;
joshualittb2aa7cb2015-08-05 11:05:22 -070090 LocalCoordsType fLocalCoordsType;
ethannicholas28ef4452016-03-25 09:26:03 -070091 float fSampleShading;
joshualittb0a8a372014-09-23 09:50:21 -070092
joshualitt290c09b2014-12-19 13:45:20 -080093 typedef GrPrimitiveProcessor INHERITED;
joshualittb0a8a372014-09-23 09:50:21 -070094};
joshualitt56995b52014-12-11 15:44:02 -080095
joshualittb0a8a372014-09-23 09:50:21 -070096#endif