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

Unified Diff: webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp

Issue 8615: Add support for transformed, stoked, shadowed, filled text. We do this by... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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: webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp
===================================================================
--- webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp (revision 6975)
+++ webkit/port/platform/graphics/skia/GraphicsContextSkia.cpp (working copy)
@@ -943,7 +943,7 @@
c = SkColorSetARGB(0xFF/3, 0, 0, 0); // "std" apple shadow color.
SkDrawLooper* dl = new SkBlurDrawLooper(SkIntToScalar(blur),
SkIntToScalar(size.width()),
- SkIntToScalar(-size.height()),
+ SkIntToScalar(size.height()),
c);
platformContext()->setDrawLooper(dl);
dl->unref();

Powered by Google App Engine
This is Rietveld 408576698