diff options
author | reed <reed@google.com> | 2015-01-06 07:17:49 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-06 07:17:49 -0800 |
commit | e3b61eb7997d12c5f9b844dd3af1847492d9f411 (patch) | |
tree | f66b9bdd303a2f1112ff9a6b5ec08f63b01aaa8c /src/core | |
parent | 1b74730c6bc1de0b638c4c6e18e71f520bb18249 (diff) |
Revert of use conics for ovals and roundrects (patchset #1 id:1 of https://codereview.chromium.org/817283005/)
Reason for revert:
need fix in edgebuilder+aa
Original issue's description:
> use conics for ovals and roundrects
>
> adapted from https://codereview.chromium.org/831313002/
>
> BUG=skia:
> TBR=
>
> Committed: https://skia.googlesource.com/skia/+/2bf1c4d58b84c73c6421edcb25e3afb4971da200
TBR=reed@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review URL: https://codereview.chromium.org/840573002
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkPath.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp index 23c00e06f7..128a0cf3e4 100644 --- a/src/core/SkPath.cpp +++ b/src/core/SkPath.cpp @@ -14,6 +14,11 @@ #include "SkRRect.h" #include "SkThread.h" +// These two should be removed once we fix any gpu bugs, and then +// just move them into skia_for_chromium_defines.gypi +#define SK_SUPPORT_LEGACY_ADDOVAL +#define SK_SUPPORT_LEGACY_ADDRRECT + //////////////////////////////////////////////////////////////////////////// /** |