diff options
author | reed <reed@google.com> | 2015-01-06 09:29:33 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-06 17:30:43 +0000 |
commit | 79da8d544ed230b6da4fde2f8a2f755a6341547d (patch) | |
tree | 2c29740e52f3bb5b245a8af3108ff64e34fb99f3 /skia/config | |
parent | c163943c9237231d8adbfe1f433d578e5ca23ced (diff) | |
download | chromium_src-79da8d544ed230b6da4fde2f8a2f755a6341547d.zip chromium_src-79da8d544ed230b6da4fde2f8a2f755a6341547d.tar.gz chromium_src-79da8d544ed230b6da4fde2f8a2f755a6341547d.tar.bz2 |
add flags to (for now) ignore conics when drawing ovals/rrects
BUG=
Review URL: https://codereview.chromium.org/836143002
Cr-Commit-Position: refs/heads/master@{#310102}
Diffstat (limited to 'skia/config')
-rw-r--r-- | skia/config/SkUserConfig.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/skia/config/SkUserConfig.h b/skia/config/SkUserConfig.h index ba206bd0..36e32ec 100644 --- a/skia/config/SkUserConfig.h +++ b/skia/config/SkUserConfig.h @@ -279,6 +279,14 @@ SK_API void SkDebugf_FileLine(const char* file, int line, bool fatal, # define SK_IGNORE_GPU_DITHER #endif +#ifndef SK_SUPPORT_LEGACY_ADDOVAL +# define SK_SUPPORT_LEGACY_ADDOVAL +#endif + +#ifndef SK_SUPPORT_LEGACY_ADDRRECT +# define SK_SUPPORT_LEGACY_ADDRRECT +#endif + // If this goes well, we can have Skia respect DYNAMIC_ANNOTATIONS_ENABLED directly. #if DYNAMIC_ANNOTATIONS_ENABLED # define SK_DYNAMIC_ANNOTATIONS_ENABLED 1 |