Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: skia/ext/paint_simplifier.cc

Issue 305623008: skia: Use medium filter quality in PaintSimplifier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/paint_simplifier.cc
diff --git a/skia/ext/paint_simplifier.cc b/skia/ext/paint_simplifier.cc
index 8df91a888a42cd07eb8c650caa94c570c52b66a7..ceffe955317a0b3ba3e3f234243f784cc892cdcb 100644
--- a/skia/ext/paint_simplifier.cc
+++ b/skia/ext/paint_simplifier.cc
@@ -26,6 +26,7 @@ bool PaintSimplifier::filter(SkPaint* paint, Type type) {
paint->setSubpixelText(false);
paint->setLCDRenderText(false);
+ paint->setFilterLevel(SkPaint::kMedium_FilterLevel);
reed1 2014/05/29 12:16:59 Do you want to set this to medium, even if the ori
reveman 2014/05/29 16:42:27 Good idea. Done.
paint->setMaskFilter(NULL);
// Uncomment this line to shade simplified tiles pink during debugging.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698