aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/bigrrectaaeffect.cpp
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-11-09 14:51:17 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-11-09 20:59:27 +0000
commit0f3c73220a25eba9bf11583db3d0f76a2c4f6331 (patch)
treea87123e59d979e7041024e34e9eb089686fb000d /gm/bigrrectaaeffect.cpp
parent4a851ca334caac5e60606dbeb9ef6de77b34e24d (diff)
renamed GrPrimitiveEdgeType / GrProcessorEdgeType to GrClipEdgeType
Bug: skia: Change-Id: I4a9af0b9b2cfa47875b2ba098098183e8dca29a7 Reviewed-on: https://skia-review.googlesource.com/69601 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'gm/bigrrectaaeffect.cpp')
-rw-r--r--gm/bigrrectaaeffect.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gm/bigrrectaaeffect.cpp b/gm/bigrrectaaeffect.cpp
index da89f45e1f..c04f3e77c6 100644
--- a/gm/bigrrectaaeffect.cpp
+++ b/gm/bigrrectaaeffect.cpp
@@ -60,13 +60,13 @@ protected:
int y = kPad;
int x = kPad;
- constexpr GrPrimitiveEdgeType kEdgeTypes[] = {
- kFillAA_GrProcessorEdgeType,
- kInverseFillAA_GrProcessorEdgeType,
+ constexpr GrClipEdgeType kEdgeTypes[] = {
+ kFillAA_GrClipEdgeType,
+ kInverseFillAA_GrClipEdgeType,
};
SkRect testBounds = SkRect::MakeIWH(fTestWidth, fTestHeight);
for (size_t et = 0; et < SK_ARRAY_COUNT(kEdgeTypes); ++et) {
- GrPrimitiveEdgeType edgeType = kEdgeTypes[et];
+ GrClipEdgeType edgeType = kEdgeTypes[et];
canvas->save();
canvas->translate(SkIntToScalar(x), SkIntToScalar(y));