From 1706f842086c089ebc496dfc7f45c959e5eda01e Mon Sep 17 00:00:00 2001 From: Ethan Nicholas Date: Fri, 10 Nov 2017 11:58:19 -0500 Subject: switched GrClipEdge to an enum class Bug: skia: Change-Id: Idf41580314a32739c70721530fc3ca48e566b044 Reviewed-on: https://skia-review.googlesource.com/70023 Reviewed-by: Brian Salomon Commit-Queue: Ethan Nicholas --- gm/bigrrectaaeffect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gm/bigrrectaaeffect.cpp') diff --git a/gm/bigrrectaaeffect.cpp b/gm/bigrrectaaeffect.cpp index c04f3e77c6..62c9da8b30 100644 --- a/gm/bigrrectaaeffect.cpp +++ b/gm/bigrrectaaeffect.cpp @@ -61,8 +61,8 @@ protected: int y = kPad; int x = kPad; constexpr GrClipEdgeType kEdgeTypes[] = { - kFillAA_GrClipEdgeType, - kInverseFillAA_GrClipEdgeType, + GrClipEdgeType::kFillAA, + GrClipEdgeType::kInverseFillAA, }; SkRect testBounds = SkRect::MakeIWH(fTestWidth, fTestHeight); for (size_t et = 0; et < SK_ARRAY_COUNT(kEdgeTypes); ++et) { -- cgit v1.2.3