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

Unified Diff: trunk/src/skia/ext/paint_simplifier.cc

Issue 308703006: Revert 273648 "skia: Use medium filter quality in PaintSimplifier." (Closed) Base URL: svn://svn.chromium.org/chrome/
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: trunk/src/skia/ext/paint_simplifier.cc
===================================================================
--- trunk/src/skia/ext/paint_simplifier.cc (revision 273913)
+++ trunk/src/skia/ext/paint_simplifier.cc (working copy)
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include <limits>
-
#include "skia/ext/paint_simplifier.h"
#include "third_party/skia/include/core/SkPaint.h"
@@ -28,12 +26,6 @@
paint->setSubpixelText(false);
paint->setLCDRenderText(false);
- // Reduce filter level to medium or less. Note that reducing the filter to
- // less than medium can have a negative effect on performance as the filtered
- // image is not cached in this case.
- paint->setFilterLevel(
- std::min(paint->getFilterLevel(), SkPaint::kMedium_FilterLevel));
-
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