blob: 644fbbab2d0609ce1cd23fb387ee17503807b889 [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
Chris Dalton383a2ef2018-01-08 17:21:41 -05008#ifndef GrCCPathProcessor_DEFINED
9#define GrCCPathProcessor_DEFINED
Chris Dalton1a325d22017-07-14 15:17:41 -060010
Chris Dalton27059d32018-01-23 14:06:50 -070011#include "GrCaps.h"
Chris Dalton1a325d22017-07-14 15:17:41 -060012#include "GrGeometryProcessor.h"
13#include "SkPath.h"
14#include <array>
15
16class GrOnFlushResourceProvider;
Chris Dalton1a325d22017-07-14 15:17:41 -060017
18/**
Chris Dalton383a2ef2018-01-08 17:21:41 -050019 * This class draws AA paths using the coverage count masks produced by GrCCCoverageProcessor.
Chris Dalton1a325d22017-07-14 15:17:41 -060020 *
21 * Paths are drawn as bloated octagons, and coverage is derived from the coverage count mask and
22 * fill rule.
23 *
24 * The caller must set up an instance buffer as detailed below, then draw indexed-instanced
Chris Dalton27059d32018-01-23 14:06:50 -070025 * meshes using the buffers and parameters provided by this class.
Chris Dalton1a325d22017-07-14 15:17:41 -060026 */
Chris Dalton383a2ef2018-01-08 17:21:41 -050027class GrCCPathProcessor : public GrGeometryProcessor {
Chris Dalton1a325d22017-07-14 15:17:41 -060028public:
Chris Dalton1a325d22017-07-14 15:17:41 -060029 enum class InstanceAttribs {
30 kDevBounds,
31 kDevBounds45,
32 kViewMatrix, // FIXME: This causes a lot of duplication. It could move to a texel buffer.
33 kViewTranslate,
34 kAtlasOffset,
35 kColor
36 };
37 static constexpr int kNumInstanceAttribs = 1 + (int)InstanceAttribs::kColor;
38
39 struct Instance {
Chris Daltona3e92712017-12-04 11:45:51 -070040 SkRect fDevBounds;
41 SkRect fDevBounds45; // Bounding box in "| 1 -1 | * devCoords" space.
42 // | 1 1 |
43 std::array<float, 4> fViewMatrix; // {kScaleX, kSkewy, kSkewX, kScaleY}
44 std::array<float, 2> fViewTranslate;
45 std::array<int16_t, 2> fAtlasOffset;
46 uint32_t fColor;
Chris Dalton1a325d22017-07-14 15:17:41 -060047
48 GR_STATIC_ASSERT(SK_SCALAR_IS_FLOAT);
49 };
50
Chris Daltona045eea2017-10-24 13:22:10 -060051 GR_STATIC_ASSERT(4 * 16 == sizeof(Instance));
Chris Dalton1a325d22017-07-14 15:17:41 -060052
Chris Dalton27059d32018-01-23 14:06:50 -070053 static GrPrimitiveType MeshPrimitiveType(const GrCaps& caps) {
54 return caps.usePrimitiveRestart() ? GrPrimitiveType::kTriangleStrip
55 : GrPrimitiveType::kTriangles;
56 }
Chris Dalton5d2de082017-12-19 10:40:23 -070057 static sk_sp<const GrBuffer> FindVertexBuffer(GrOnFlushResourceProvider*);
Chris Dalton27059d32018-01-23 14:06:50 -070058 static sk_sp<const GrBuffer> FindIndexBuffer(GrOnFlushResourceProvider*);
59 static int NumIndicesPerInstance(const GrCaps&);
Chris Dalton5d2de082017-12-19 10:40:23 -070060
Chris Dalton27059d32018-01-23 14:06:50 -070061 GrCCPathProcessor(GrResourceProvider*, sk_sp<GrTextureProxy> atlas, SkPath::FillType);
Chris Dalton1a325d22017-07-14 15:17:41 -060062
Chris Dalton383a2ef2018-01-08 17:21:41 -050063 const char* name() const override { return "GrCCPathProcessor"; }
Robert Phillipse44ef102017-07-21 15:37:19 -040064 const GrSurfaceProxy* atlasProxy() const { return fAtlasAccess.proxy(); }
Chris Dalton1a325d22017-07-14 15:17:41 -060065 const GrTexture* atlas() const { return fAtlasAccess.peekTexture(); }
66 SkPath::FillType fillType() const { return fFillType; }
67 const Attribute& getInstanceAttrib(InstanceAttribs attribID) const {
68 const Attribute& attrib = this->getAttrib((int)attribID);
69 SkASSERT(Attribute::InputRate::kPerInstance == attrib.fInputRate);
70 return attrib;
71 }
72 const Attribute& getEdgeNormsAttrib() const {
73 SkASSERT(1 + kNumInstanceAttribs == this->numAttribs());
74 const Attribute& attrib = this->getAttrib(kNumInstanceAttribs);
75 SkASSERT(Attribute::InputRate::kPerVertex == attrib.fInputRate);
76 return attrib;
77 }
78
79 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override;
80 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const override;
81
82private:
Chris Daltona3e92712017-12-04 11:45:51 -070083 const SkPath::FillType fFillType;
84 const TextureSampler fAtlasAccess;
Chris Dalton1a325d22017-07-14 15:17:41 -060085
86 typedef GrGeometryProcessor INHERITED;
87};
88
89#endif