Index: src/gpu/GrCaps.cpp |
diff --git a/src/gpu/GrCaps.cpp b/src/gpu/GrCaps.cpp |
index b524e3ff11c21a598985a77033550c0588199224..a5e46de4b4136fabc327a566cb8dd0b7b6a2d217 100644 |
--- a/src/gpu/GrCaps.cpp |
+++ b/src/gpu/GrCaps.cpp |
@@ -96,6 +96,7 @@ GrCaps::GrCaps(const GrContextOptions& options) { |
fOversizedStencilSupport = false; |
fTextureBarrierSupport = false; |
fSampleLocationsSupport = false; |
+ fMultisampleDisableSupport = false; |
fUsesMixedSamples = false; |
fSupportsInstancedDraws = false; |
fFullClearIsFree = false; |
@@ -173,6 +174,7 @@ SkString GrCaps::dump() const { |
r.appendf("Oversized Stencil Support : %s\n", gNY[fOversizedStencilSupport]); |
r.appendf("Texture Barrier Support : %s\n", gNY[fTextureBarrierSupport]); |
r.appendf("Sample Locations Support : %s\n", gNY[fSampleLocationsSupport]); |
+ r.appendf("Multisample disable support : %s\n", gNY[fMultisampleDisableSupport]); |
r.appendf("Uses Mixed Samples : %s\n", gNY[fUsesMixedSamples]); |
r.appendf("Supports instanced draws : %s\n", gNY[fSupportsInstancedDraws]); |
r.appendf("Full screen clear is free : %s\n", gNY[fFullClearIsFree]); |