show fontstyle values for each style
git-svn-id: http://skia.googlecode.com/svn/trunk@8843 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/fontmgr.cpp b/gm/fontmgr.cpp
index 1218435..4ff55a7 100644
--- a/gm/fontmgr.cpp
+++ b/gm/fontmgr.cpp
@@ -59,6 +59,7 @@
SkString sname;
SkFontStyle fs;
set->getStyle(j, &fs, &sname);
+ sname.appendf(" [%d %d %d]", fs.weight(), fs.width(), fs.isItalic());
SkSafeUnref(paint.setTypeface(set->createTypeface(j)));
x = drawString(canvas, sname, x, y, paint) + 20;