aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar Stephen White <senorblanco@chromium.org>2017-03-01 11:48:27 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-01 19:36:14 +0000
commit6641212397be28b6263e91340b7ed76bd29b3035 (patch)
treeba9fa21734db852918da6eff96f176d0344b033a /src/gpu
parent4b1b04d8ecb3dd8c67d9e1724e7a1898a51dbf32 (diff)
GrTessellator: minor cleanups and speedups.
Don't null out vertex's fPrev and fNext ptrs during MonotonePoly::emit(); list_insert() will do it for us. Don't normalize the tangent returned by get_unit_normal() to unit length, since we can do the dot product comparison without it. Copy Lines where possible, rather than recomputing them. Change-Id: I733b00dd9d9d493313ac9a1c71aac0b708e78201 Reviewed-on: https://skia-review.googlesource.com/9047 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrTessellator.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gpu/GrTessellator.cpp b/src/gpu/GrTessellator.cpp
index 3ad726dcd2..3271b12208 100644
--- a/src/gpu/GrTessellator.cpp
+++ b/src/gpu/GrTessellator.cpp
@@ -478,11 +478,9 @@ struct Poly {
void* emit(const AAParams* aaParams, void* data) {
Edge* e = fFirstEdge;
- e->fTop->fPrev = e->fTop->fNext = nullptr;
VertexList vertices;
vertices.append(e->fTop);
while (e != nullptr) {
- e->fBottom->fPrev = e->fBottom->fNext = nullptr;
if (kRight_Side == fSide) {
vertices.append(e->fBottom);
e = e->fRightPolyNext;
@@ -1446,9 +1444,10 @@ void remove_non_boundary_edges(const VertexList& mesh, SkPath::FillType fillType
}
}
+// Note: this is the normal to the edge, but not necessarily unit length.
void get_edge_normal(const Edge* e, SkVector* normal) {
- normal->setNormalize(SkDoubleToScalar(e->fLine.fA) * e->fWinding,
- SkDoubleToScalar(e->fLine.fB) * e->fWinding);
+ normal->set(SkDoubleToScalar(e->fLine.fA) * e->fWinding,
+ SkDoubleToScalar(e->fLine.fB) * e->fWinding);
}
// Stage 5c: detect and remove "pointy" vertices whose edge normals point in opposite directions
@@ -1465,7 +1464,7 @@ void simplify_boundary(EdgeList* boundary, Comparator& c, SkArenaAlloc& alloc) {
double dist = e->dist(prev->fPoint);
SkVector normal;
get_edge_normal(e, &normal);
- float denom = 0.0625f * static_cast<float>(e->fLine.magSq());
+ double denom = 0.0625f * e->fLine.magSq();
if (prevNormal.dot(normal) < 0.0 && (dist * dist) <= denom) {
Edge* join = new_edge(prev, next, Edge::Type::kInner, c, alloc);
insert_edge(join, e, boundary);
@@ -1513,18 +1512,18 @@ void boundary_to_aa_mesh(EdgeList* boundary, VertexList* mesh, Comparator& c, Sk
Edge* prevEdge = boundary->fTail;
float radius = 0.5f;
double offset = radius * sqrt(prevEdge->fLine.magSq()) * prevEdge->fWinding;
- Line prevInner(prevEdge->fTop, prevEdge->fBottom);
+ Line prevInner(prevEdge->fLine);
prevInner.fC -= offset;
- Line prevOuter(prevEdge->fTop, prevEdge->fBottom);
+ Line prevOuter(prevEdge->fLine);
prevOuter.fC += offset;
VertexList innerVertices;
VertexList outerVertices;
Edge* prevBisector = nullptr;
for (Edge* e = boundary->fHead; e != nullptr; e = e->fRight) {
double offset = radius * sqrt(e->fLine.magSq()) * e->fWinding;
- Line inner(e->fTop, e->fBottom);
+ Line inner(e->fLine);
inner.fC -= offset;
- Line outer(e->fTop, e->fBottom);
+ Line outer(e->fLine);
outer.fC += offset;
SkPoint innerPoint, outerPoint;
if (prevInner.intersect(inner, &innerPoint) &&