separate state for msaa renderability

R=robertphillips@google.com, brian@thesalomons.net

Author: bsalomon@google.com

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

git-svn-id: http://skia.googlecode.com/svn/trunk@11770 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
index c33dcb7..9f35065 100644
--- a/src/gpu/GrDrawTarget.cpp
+++ b/src/gpu/GrDrawTarget.cpp
@@ -1047,7 +1047,10 @@
     SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig]);
     for (size_t i = 0; i < SK_ARRAY_COUNT(kConfigNames); ++i)  {
         if (i != kUnknown_GrPixelConfig) {
-            GrPrintf("%s is renderable: %s\n", kConfigNames[i], gNY[fConfigRenderSupport[i]]);
+            GrPrintf("%s is renderable: %s, with MSAA: %s\n",
+                     kConfigNames[i],
+                     gNY[fConfigRenderSupport[i][0]],
+                     gNY[fConfigRenderSupport[i][1]]);
         }
     }
 }