blob: be9f67a4b9c21242240ffea91521dfdb22402f8f [file] [log] [blame]
Chris Dalton1a325d22017-07-14 15:17:41 -06001/*
2 * Copyright 2017 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#include "GrCCPRPathProcessor.h"
9
10#include "GrOnFlushResourceProvider.h"
11#include "GrTexture.h"
12#include "glsl/GrGLSLFragmentShaderBuilder.h"
13#include "glsl/GrGLSLGeometryProcessor.h"
14#include "glsl/GrGLSLProgramBuilder.h"
15#include "glsl/GrGLSLVarying.h"
16
17// Slightly undershoot an AA bloat radius of 0.5 so vertices that fall on integer boundaries don't
18// accidentally reach into neighboring path masks within the atlas.
19constexpr float kAABloatRadius = 0.491111f;
20
21// Paths are drawn as octagons. Each point on the octagon is the intersection of two lines: one edge
22// from the path's bounding box and one edge from its 45-degree bounding box. The below inputs
23// define a vertex by the two edges that need to be intersected. Normals point out of the octagon,
24// and the bounding boxes are sent in as instance attribs.
25static constexpr float kOctoEdgeNorms[8 * 4] = {
26 // bbox // bbox45
27 -1, 0, -1,+1,
28 -1, 0, -1,-1,
29 0,-1, -1,-1,
30 0,-1, +1,-1,
31 +1, 0, +1,-1,
32 +1, 0, +1,+1,
33 0,+1, +1,+1,
34 0,+1, -1,+1,
35};
36
37GR_DECLARE_STATIC_UNIQUE_KEY(gVertexBufferKey);
38
39// Index buffer for the octagon defined above.
40static uint16_t kOctoIndices[GrCCPRPathProcessor::kPerInstanceIndexCount] = {
41 0, 4, 2,
42 0, 6, 4,
43 0, 2, 1,
44 2, 4, 3,
45 4, 6, 5,
46 6, 0, 7,
47};
48
49GR_DECLARE_STATIC_UNIQUE_KEY(gIndexBufferKey);
50
51GrCCPRPathProcessor::GrCCPRPathProcessor(GrResourceProvider* rp, sk_sp<GrTextureProxy> atlas,
52 SkPath::FillType fillType, const GrShaderCaps& shaderCaps)
Ethan Nicholasabff9562017-10-09 10:54:08 -040053 : INHERITED(kGrCCPRPathProcessor_ClassID)
Chris Daltona3e92712017-12-04 11:45:51 -070054 , fFillType(fillType)
55 , fAtlasAccess(std::move(atlas), GrSamplerState::Filter::kNearest,
56 GrSamplerState::WrapMode::kClamp, kFragment_GrShaderFlag) {
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040057 this->addInstanceAttrib("devbounds", kFloat4_GrVertexAttribType);
58 this->addInstanceAttrib("devbounds45", kFloat4_GrVertexAttribType);
59 this->addInstanceAttrib("view_matrix", kFloat4_GrVertexAttribType);
60 this->addInstanceAttrib("view_translate", kFloat2_GrVertexAttribType);
Chris Daltona045eea2017-10-24 13:22:10 -060061 this->addInstanceAttrib("atlas_offset", kShort2_GrVertexAttribType);
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040062 this->addInstanceAttrib("color", kUByte4_norm_GrVertexAttribType);
Chris Dalton1a325d22017-07-14 15:17:41 -060063
64 SkASSERT(offsetof(Instance, fDevBounds) ==
65 this->getInstanceAttrib(InstanceAttribs::kDevBounds).fOffsetInRecord);
66 SkASSERT(offsetof(Instance, fDevBounds45) ==
67 this->getInstanceAttrib(InstanceAttribs::kDevBounds45).fOffsetInRecord);
68 SkASSERT(offsetof(Instance, fViewMatrix) ==
69 this->getInstanceAttrib(InstanceAttribs::kViewMatrix).fOffsetInRecord);
70 SkASSERT(offsetof(Instance, fViewTranslate) ==
71 this->getInstanceAttrib(InstanceAttribs::kViewTranslate).fOffsetInRecord);
72 SkASSERT(offsetof(Instance, fAtlasOffset) ==
73 this->getInstanceAttrib(InstanceAttribs::kAtlasOffset).fOffsetInRecord);
74 SkASSERT(offsetof(Instance, fColor) ==
75 this->getInstanceAttrib(InstanceAttribs::kColor).fOffsetInRecord);
76 SkASSERT(sizeof(Instance) == this->getInstanceStride());
77
78 GR_STATIC_ASSERT(6 == kNumInstanceAttribs);
79
Ethan Nicholasfa7ee242017-09-25 09:52:04 -040080 this->addVertexAttrib("edge_norms", kFloat4_GrVertexAttribType);
Chris Dalton1a325d22017-07-14 15:17:41 -060081
Chris Dalton1a325d22017-07-14 15:17:41 -060082 fAtlasAccess.instantiate(rp);
83 this->addTextureSampler(&fAtlasAccess);
Chris Dalton1a325d22017-07-14 15:17:41 -060084}
85
86void GrCCPRPathProcessor::getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const {
Robert Phillipse44ef102017-07-21 15:37:19 -040087 b->add32((fFillType << 16) | this->atlasProxy()->origin());
Chris Dalton1a325d22017-07-14 15:17:41 -060088}
89
90class GLSLPathProcessor : public GrGLSLGeometryProcessor {
91public:
92 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override;
93
94private:
95 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor& primProc,
96 FPCoordTransformIter&& transformIter) override {
97 const GrCCPRPathProcessor& proc = primProc.cast<GrCCPRPathProcessor>();
98 pdman.set2f(fAtlasAdjustUniform, 1.0f / proc.atlas()->width(),
99 1.0f / proc.atlas()->height());
100 this->setTransformDataHelper(SkMatrix::I(), pdman, &transformIter);
101 }
102
103 GrGLSLUniformHandler::UniformHandle fAtlasAdjustUniform;
104
105 typedef GrGLSLGeometryProcessor INHERITED;
106};
107
108GrGLSLPrimitiveProcessor* GrCCPRPathProcessor::createGLSLInstance(const GrShaderCaps&) const {
109 return new GLSLPathProcessor();
110}
111
112void GLSLPathProcessor::onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) {
113 using InstanceAttribs = GrCCPRPathProcessor::InstanceAttribs;
114 const GrCCPRPathProcessor& proc = args.fGP.cast<GrCCPRPathProcessor>();
115 GrGLSLUniformHandler* uniHandler = args.fUniformHandler;
116 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
117
118 const char* atlasAdjust;
119 fAtlasAdjustUniform = uniHandler->addUniform(
120 kVertex_GrShaderFlag,
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400121 kFloat2_GrSLType, "atlas_adjust", &atlasAdjust);
Chris Dalton1a325d22017-07-14 15:17:41 -0600122
123 varyingHandler->emitAttributes(proc);
124
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400125 GrGLSLVertToFrag texcoord(kFloat2_GrSLType);
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400126 GrGLSLVertToFrag color(kHalf4_GrSLType);
Chris Daltonfdde34e2017-10-16 14:15:26 -0600127 varyingHandler->addVarying("texcoord", &texcoord);
Chris Dalton1a325d22017-07-14 15:17:41 -0600128 varyingHandler->addFlatPassThroughAttribute(&proc.getInstanceAttrib(InstanceAttribs::kColor),
Chris Daltonfdde34e2017-10-16 14:15:26 -0600129 args.fOutputColor);
Chris Dalton1a325d22017-07-14 15:17:41 -0600130
131 // Vertex shader.
132 GrGLSLVertexBuilder* v = args.fVertBuilder;
133
134 // Find the intersections of (bloated) devBounds and devBounds45 in order to come up with an
135 // octagon that circumscribes the (bloated) path. A vertex is the intersection of two lines:
136 // one edge from the path's bounding box and one edge from its 45-degree bounding box.
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400137 v->codeAppendf("float2x2 N = float2x2(%s);", proc.getEdgeNormsAttrib().fName);
Chris Dalton1a325d22017-07-14 15:17:41 -0600138
139 // N[0] is the normal for the edge we are intersecting from the regular bounding box, pointing
140 // out of the octagon.
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400141 v->codeAppendf("float2 refpt = (min(N[0].x, N[0].y) < 0) ? %s.xy : %s.zw;",
Chris Dalton1a325d22017-07-14 15:17:41 -0600142 proc.getInstanceAttrib(InstanceAttribs::kDevBounds).fName,
143 proc.getInstanceAttrib(InstanceAttribs::kDevBounds).fName);
144 v->codeAppendf("refpt += N[0] * %f;", kAABloatRadius); // bloat for AA.
145
146 // N[1] is the normal for the edge we are intersecting from the 45-degree bounding box, pointing
147 // out of the octagon.
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400148 v->codeAppendf("float2 refpt45 = (N[1].x < 0) ? %s.xy : %s.zw;",
Chris Dalton1a325d22017-07-14 15:17:41 -0600149 proc.getInstanceAttrib(InstanceAttribs::kDevBounds45).fName,
150 proc.getInstanceAttrib(InstanceAttribs::kDevBounds45).fName);
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400151 v->codeAppendf("refpt45 *= float2x2(.5,.5,-.5,.5);"); // transform back to device space.
Chris Dalton1a325d22017-07-14 15:17:41 -0600152 v->codeAppendf("refpt45 += N[1] * %f;", kAABloatRadius); // bloat for AA.
153
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400154 v->codeAppend ("float2 K = float2(dot(N[0], refpt), dot(N[1], refpt45));");
155 v->codeAppendf("float2 octocoord = K * inverse(N);");
Chris Dalton1a325d22017-07-14 15:17:41 -0600156
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400157 gpArgs->fPositionVar.set(kFloat2_GrSLType, "octocoord");
Chris Dalton1a325d22017-07-14 15:17:41 -0600158
159 // Convert to atlas coordinates in order to do our texture lookup.
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400160 v->codeAppendf("float2 atlascoord = octocoord + float2(%s);",
Chris Dalton1a325d22017-07-14 15:17:41 -0600161 proc.getInstanceAttrib(InstanceAttribs::kAtlasOffset).fName);
Robert Phillipse44ef102017-07-21 15:37:19 -0400162 if (kTopLeft_GrSurfaceOrigin == proc.atlasProxy()->origin()) {
Chris Dalton1a325d22017-07-14 15:17:41 -0600163 v->codeAppendf("%s = atlascoord * %s;", texcoord.vsOut(), atlasAdjust);
164 } else {
Robert Phillipse44ef102017-07-21 15:37:19 -0400165 SkASSERT(kBottomLeft_GrSurfaceOrigin == proc.atlasProxy()->origin());
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400166 v->codeAppendf("%s = float2(atlascoord.x * %s.x, 1 - atlascoord.y * %s.y);",
Chris Dalton1a325d22017-07-14 15:17:41 -0600167 texcoord.vsOut(), atlasAdjust, atlasAdjust);
168 }
169
170 // Convert to (local) path cordinates.
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400171 v->codeAppendf("float2 pathcoord = inverse(float2x2(%s)) * (octocoord - %s);",
Chris Dalton1a325d22017-07-14 15:17:41 -0600172 proc.getInstanceAttrib(InstanceAttribs::kViewMatrix).fName,
173 proc.getInstanceAttrib(InstanceAttribs::kViewTranslate).fName);
174
Brian Salomon04460cc2017-12-06 14:47:42 -0500175 this->emitTransforms(v, varyingHandler, uniHandler, GrShaderVar("pathcoord", kFloat2_GrSLType),
Chris Dalton1a325d22017-07-14 15:17:41 -0600176 args.fFPCoordTransformHandler);
177
178 // Fragment shader.
179 GrGLSLPPFragmentBuilder* f = args.fFragBuilder;
180
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400181 f->codeAppend ("half coverage_count = ");
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400182 f->appendTextureLookup(args.fTexSamplers[0], texcoord.fsIn(), kFloat2_GrSLType);
Chris Dalton1a325d22017-07-14 15:17:41 -0600183 f->codeAppend (".a;");
184
185 if (SkPath::kWinding_FillType == proc.fillType()) {
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400186 f->codeAppendf("%s = half4(min(abs(coverage_count), 1));", args.fOutputCoverage);
Chris Dalton1a325d22017-07-14 15:17:41 -0600187 } else {
188 SkASSERT(SkPath::kEvenOdd_FillType == proc.fillType());
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400189 f->codeAppend ("half t = mod(abs(coverage_count), 2);");
190 f->codeAppendf("%s = half4(1 - abs(t - 1));", args.fOutputCoverage);
Chris Dalton1a325d22017-07-14 15:17:41 -0600191 }
192}
193
194sk_sp<GrBuffer> GrCCPRPathProcessor::FindOrMakeIndexBuffer(GrOnFlushResourceProvider* onFlushRP) {
195 GR_DEFINE_STATIC_UNIQUE_KEY(gIndexBufferKey);
196 return onFlushRP->findOrMakeStaticBuffer(gIndexBufferKey, kIndex_GrBufferType,
197 sizeof(kOctoIndices), kOctoIndices);
198}
199
200sk_sp<GrBuffer> GrCCPRPathProcessor::FindOrMakeVertexBuffer(GrOnFlushResourceProvider* onFlushRP) {
201 GR_DEFINE_STATIC_UNIQUE_KEY(gVertexBufferKey);
202 return onFlushRP->findOrMakeStaticBuffer(gVertexBufferKey, kVertex_GrBufferType,
203 sizeof(kOctoEdgeNorms), kOctoEdgeNorms);
204}