forked from rive-app/rive-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgr_inner_fan_triangulator.hpp
87 lines (72 loc) · 2.71 KB
/
gr_inner_fan_triangulator.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrInnerFanTriangulator_DEFINED
#define GrInnerFanTriangulator_DEFINED
#if !defined(SK_ENABLE_OPTIMIZE_SIZE)
#include "gr_triangulator.hpp"
namespace rive
{
// Triangulates the inner polygon(s) of a path (i.e., the triangle fan for a Redbook rendering
// method). When combined with the outer curves and grout triangles, these produce a complete path.
// If a groutCollector is not provided, pathToPolys fails upon self intersection.
class GrInnerFanTriangulator : private GrTriangulator
{
public:
using GrTriangulator::GroutTriangleList;
GrInnerFanTriangulator(const RawPath& path,
const Mat2D& viewMatrix,
Comparator::Direction direction,
FillRule fillRule,
TrivialBlockAllocator* alloc) :
GrTriangulator(direction, fillRule, alloc),
m_shouldReverseTriangles(viewMatrix[0] * viewMatrix[3] - viewMatrix[2] * viewMatrix[1] < 0)
{
fPreserveCollinearVertices = true;
fCollectGroutTriangles = true;
bool isLinear;
auto [polys, success] = GrTriangulator::pathToPolys(path, 0, AABB{}, &isLinear);
if (success)
{
m_polys = polys;
m_maxVertexCount = countMaxTriangleVertices(m_polys);
}
}
FillRule fillRule() const { return fFillRule; }
uint64_t maxVertexCount() const { return m_maxVertexCount; }
size_t polysToTriangles(pls::WriteOnlyMappedMemory<pls::TriangleVertex>* bufferRing,
uint16_t pathID) const
{
if (m_polys == nullptr || m_maxVertexCount == 0)
{
return 0;
}
return GrTriangulator::polysToTriangles(m_polys,
m_maxVertexCount,
pathID,
m_shouldReverseTriangles,
bufferRing);
}
const GroutTriangleList& groutList() const { return fGroutList; }
private:
// We reverse triangles whe using a left-handed view matrix, in order to ensure we always emit
// clockwise triangles.
bool m_shouldReverseTriangles;
Poly* m_polys = nullptr;
uint64_t m_maxVertexCount = 0;
};
} // namespace rive
#else
// Stub out GrInnerFanTriangulator::GroutTriangleList for function declarations.
namespace GrInnerFanTriangulator
{
struct GroutTriangleList
{
GroutTriangleList() = delete;
};
}; // namespace GrInnerFanTriangulator
#endif // SK_ENABLE_OPTIMIZE_SIZE
#endif // GrInnerFanTriangulator_DEFINED