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

Unified Diff: Source/WebCore/platform/graphics/chromium/CompositorHUDFontAtlas.cpp

Issue 10873100: Merge 125961 - [chromium] Fix random noise around text in FPS HUD. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 4 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/WebCore/ChangeLog ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/graphics/chromium/CompositorHUDFontAtlas.cpp
===================================================================
--- Source/WebCore/platform/graphics/chromium/CompositorHUDFontAtlas.cpp (revision 126822)
+++ Source/WebCore/platform/graphics/chromium/CompositorHUDFontAtlas.cpp (working copy)
@@ -65,7 +65,7 @@
// Clear the entire texture atlas to transparent before drawing fonts.
atlasContext.setFillColor(Color(0, 0, 0, 0), ColorSpaceDeviceRGB);
- atlasContext.fillRect(FloatRect(0, 0, ATLAS_SIZE, ATLAS_SIZE));
+ atlasContext.clearRect(FloatRect(0, 0, ATLAS_SIZE, ATLAS_SIZE));
// FIXME: monospace font does not work as expected.
FontDescription fontDescription;
« no previous file with comments | « Source/WebCore/ChangeLog ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698