aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches/GrAAStrokeRectBatch.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@google.com>2015-09-22 09:48:02 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-09-22 09:48:03 -0700
commita204ceda21f3c5a319d44de4bd32eb47e4e123e1 (patch)
treec7394bcd13ee1530447317d7f59a344104a4eb78 /src/gpu/batches/GrAAStrokeRectBatch.h
parent511684fb52f20862f8552f5009390ff3987b08d8 (diff)
Revert of Fix for degenerate stroke rect (patchset #7 id:110001 of https://codereview.chromium.org/1359453002/ )
Reason for revert: breaking bots Original issue's description: > Fix for degenerate stroke rect > > BUG=skia: > > Committed: https://skia.googlesource.com/skia/+/511684fb52f20862f8552f5009390ff3987b08d8 TBR=robertphillips@google.com,joshualitt@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1356223003
Diffstat (limited to 'src/gpu/batches/GrAAStrokeRectBatch.h')
-rw-r--r--src/gpu/batches/GrAAStrokeRectBatch.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gpu/batches/GrAAStrokeRectBatch.h b/src/gpu/batches/GrAAStrokeRectBatch.h
index 242597b66a..1af4f15dca 100644
--- a/src/gpu/batches/GrAAStrokeRectBatch.h
+++ b/src/gpu/batches/GrAAStrokeRectBatch.h
@@ -23,8 +23,7 @@ GrDrawBatch* Create(GrColor color,
const SkRect& devOutside,
const SkRect& devOutsideAssist,
const SkRect& devInside,
- bool miterStroke,
- bool degenerate);
+ bool miterStroke);
bool Append(GrBatch*,
GrColor color,
@@ -32,8 +31,7 @@ bool Append(GrBatch*,
const SkRect& devOutside,
const SkRect& devOutsideAssist,
const SkRect& devInside,
- bool miterStroke,
- bool degenerate);
+ bool miterStroke);
};