Chromium Code Reviews| Index: src/gpu/GrDrawTarget.cpp |
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp |
| index fc3014e398935697ea43f05118cb9c5cfaa3b4b1..6c39743ac430cb7060c8f1831d0b6ff0023854be 100644 |
| --- a/src/gpu/GrDrawTarget.cpp |
| +++ b/src/gpu/GrDrawTarget.cpp |
| @@ -1047,7 +1047,10 @@ void GrDrawTargetCaps::print() const { |
| 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], |
|
robertphillips
2013/10/14 17:12:04
kNo_MSAA instead of false & kYes_MSAA instead of t
bsalomon
2013/10/14 17:14:06
That enum is defined locally only in GrGLCaps::ini
|
| + gNY[fConfigRenderSupport[i][false]], |
| + gNY[fConfigRenderSupport[i][true]]); |
| } |
| } |
| } |