Index: src/gpu/GrCaps.cpp |
diff --git a/src/gpu/GrCaps.cpp b/src/gpu/GrCaps.cpp |
index 900bd65cc2a3eb3b24aedecc8ca64a2312c4fd71..d6a5470ad52a46a5eb26ce578ae8c31be28ec527 100644 |
--- a/src/gpu/GrCaps.cpp |
+++ b/src/gpu/GrCaps.cpp |
@@ -91,6 +91,7 @@ GrCaps::GrCaps(const GrContextOptions& options) { |
fCompressedTexSubImageSupport = false; |
fOversizedStencilSupport = false; |
fTextureBarrierSupport = false; |
+ fSupportsInstancedDraws = false; |
fUseDrawInsteadOfClear = false; |
@@ -152,6 +153,7 @@ SkString GrCaps::dump() const { |
r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]); |
r.appendf("Oversized Stencil Support : %s\n", gNY[fOversizedStencilSupport]); |
r.appendf("Texture Barrier Support : %s\n", gNY[fTextureBarrierSupport]); |
+ r.appendf("Supports instanced draws : %s\n", gNY[fSupportsInstancedDraws]); |
r.appendf("Draw Instead of Clear [workaround] : %s\n", gNY[fUseDrawInsteadOfClear]); |
r.appendf("Draw Instead of TexSubImage [workaround] : %s\n", |
gNY[fUseDrawInsteadOfPartialRenderTargetWrite]); |