Reduce number of glyphs drawn by fontscaler GM to avoid N4 MSAA4 crash

R=reed@google.com

Review URL: https://codereview.chromium.org/23454017

git-svn-id: http://skia.googlecode.com/svn/trunk@11160 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/fontscaler.cpp b/gm/fontscaler.cpp
index 59b1a43..33f6779 100644
--- a/gm/fontscaler.cpp
+++ b/gm/fontscaler.cpp
@@ -49,7 +49,8 @@
         const size_t textLen = strlen(text);
 
         for (int j = 0; j < 2; ++j) {
-            for (int i = 0; i < 6; ++i) {
+            // This used to do 6 iterations but it causes the N4 to crash in the MSAA4 config.
+            for (int i = 0; i < 5; ++i) {
                 SkScalar x = SkIntToScalar(10);
                 SkScalar y = SkIntToScalar(20);