aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar jcgregorio <jcgregorio@google.com>2016-08-11 04:43:39 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-11 04:43:39 -0700
commit0be353487c0971475f9d19f2232d3642ea304b10 (patch)
tree1839af8fa8e36328109766d9218b309ca5b0586c /src/gpu
parentd230149ef889e920556949d2e50a1519b93aefea (diff)
Remove a useless call: Calling lineVec.dot(qPts[0])
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrPathUtils.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gpu/GrPathUtils.cpp b/src/gpu/GrPathUtils.cpp
index aa55dade96..c82895e9ba 100644
--- a/src/gpu/GrPathUtils.cpp
+++ b/src/gpu/GrPathUtils.cpp
@@ -249,7 +249,6 @@ void GrPathUtils::QuadUVMatrix::set(const SkPoint qPts[3]) {
// distances to be to the left. This matches the non-degenerate
// case.
lineVec.setOrthog(lineVec, SkPoint::kLeft_Side);
- lineVec.dot(qPts[0]);
// first row
fM[0] = 0;
fM[1] = 0;