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

Unified Diff: skia/ext/paint_simplifier.cc

Issue 610743002: skia/ext: Removed paint simplifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « skia/ext/paint_simplifier.h ('k') | skia/skia_chrome.gypi » ('j') | 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
deleted file mode 100644
index 683f92ec00a1a7828ed1c28a325f282508689a11..0000000000000000000000000000000000000000
--- a/skia/ext/paint_simplifier.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "skia/ext/paint_simplifier.h"
-#include "third_party/skia/include/core/SkPaint.h"
-#include "third_party/skia/include/core/SkShader.h"
-
-namespace skia {
-namespace {
-
-bool PaintHasBitmap(const SkPaint &paint) {
- SkShader* shader = paint.getShader();
- if (!shader)
- return false;
-
- if (shader->asAGradient(NULL) == SkShader::kNone_GradientType)
- return false;
-
- return shader->asABitmap(NULL, NULL, NULL) != SkShader::kNone_BitmapType;
-}
-
-} // namespace
-
-PaintSimplifier::PaintSimplifier()
- : INHERITED() {
-
-}
-
-PaintSimplifier::~PaintSimplifier() {
-
-}
-
-bool PaintSimplifier::filter(SkPaint* paint, Type type) {
- // Bitmaps are expensive. Skip draw if type has a bitmap.
- if (type == kBitmap_Type || PaintHasBitmap(*paint))
- return false;
-
- // Preserve a modicum of text quality; black & white text is
- // just too blocky, even during a fling.
- if (type != kText_Type) {
- paint->setAntiAlias(false);
- }
- paint->setSubpixelText(false);
- paint->setLCDRenderText(false);
-
- paint->setMaskFilter(NULL);
-
- // Uncomment this line to shade simplified tiles pink during debugging.
- //paint->setColor(SkColorSetRGB(255, 127, 127));
-
- return true;
-}
-
-
-} // namespace skia
-
-
« no previous file with comments | « skia/ext/paint_simplifier.h ('k') | skia/skia_chrome.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698