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

Unified Diff: sky/engine/platform/graphics/GraphicsContext.cpp

Issue 816543004: Update from https://crrev.com/308996 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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
Index: sky/engine/platform/graphics/GraphicsContext.cpp
diff --git a/sky/engine/platform/graphics/GraphicsContext.cpp b/sky/engine/platform/graphics/GraphicsContext.cpp
index 2a7fb3513309db43c60c37a9e355ba61b5a7893f..a0a8870f9ad8ae5f73390d31bcaecf0f543e050b 100644
--- a/sky/engine/platform/graphics/GraphicsContext.cpp
+++ b/sky/engine/platform/graphics/GraphicsContext.cpp
@@ -385,18 +385,6 @@ void GraphicsContext::adjustTextRenderMode(SkPaint* paint)
paint->setLCDRenderText(couldUseLCDRenderedText());
}
-bool GraphicsContext::couldUseLCDRenderedText()
-{
- // Our layers only have a single alpha channel. This means that subpixel
- // rendered text cannot be composited correctly when the layer is
- // collapsed. Therefore, subpixel text is contextDisabled when we are drawing
- // onto a layer.
- if (contextDisabled() || m_canvas->isDrawingToLayer() || !isCertainlyOpaque())
- return false;
-
- return shouldSmoothFonts();
-}
-
void GraphicsContext::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
{
if (contextDisabled())
« no previous file with comments | « sky/engine/platform/graphics/GraphicsContext.h ('k') | sky/engine/platform/graphics/GraphicsContext.cpp.orig » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698