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

Unified Diff: Source/platform/graphics/GraphicsContext.h

Issue 210043004: Draw thin slices of an image w/ anti-aliasing for 2D <canvas> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase; Rename some more. Created 6 years, 9 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 | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/platform/graphics/GraphicsContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsContext.h
diff --git a/Source/platform/graphics/GraphicsContext.h b/Source/platform/graphics/GraphicsContext.h
index add6d3c26e59a1e6324dce9fc15eb4094038e3fd..d33c2319fbe0e0d783236d33c89c1787c8c47ec2 100644
--- a/Source/platform/graphics/GraphicsContext.h
+++ b/Source/platform/graphics/GraphicsContext.h
@@ -136,6 +136,11 @@ public:
void setShouldAntialias(bool antialias) { mutableState()->setShouldAntialias(antialias); }
bool shouldAntialias() const { return immutableState()->shouldAntialias(); }
+ // Disable the optimization that disables anti-aliasing for
Justin Novosad 2014/04/01 17:02:01 Double negation: Disabling the disabling is more c
fs 2014/04/02 08:31:37 Made this read more like the name of the method.
+ // scale/multiple-of-90-degrees rotation for thin ("hairline") images.
+ void disableAntialiasingOptimizationForHairlineImages() { m_antialiasHairlineImages = true; }
+ bool shouldAntialiasHairlineImages() const { return m_antialiasHairlineImages; }
+
void setShouldClampToSourceRect(bool clampToSourceRect) { mutableState()->setShouldClampToSourceRect(clampToSourceRect); }
bool shouldClampToSourceRect() const { return immutableState()->shouldClampToSourceRect(); }
@@ -504,6 +509,7 @@ private:
bool m_accelerated : 1;
bool m_isCertainlyOpaque : 1;
bool m_printing : 1;
+ bool m_antialiasHairlineImages : 1;
};
} // namespace WebCore
« no previous file with comments | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/platform/graphics/GraphicsContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698