Index: src/gpu/GrCaps.cpp |
diff --git a/src/gpu/GrCaps.cpp b/src/gpu/GrCaps.cpp |
index 000f90c6a628a9e3cb61b7938aeb6084d35de40c..784e401328ec852ea2c28e279730aad6c4a0872f 100644 |
--- a/src/gpu/GrCaps.cpp |
+++ b/src/gpu/GrCaps.cpp |
@@ -106,6 +106,7 @@ GrCaps::GrCaps(const GrContextOptions& options) { |
fMapBufferFlags = kNone_MapFlags; |
+ fMaxVertexAttributes = 0; |
fMaxRenderTargetSize = 1; |
fMaxTextureSize = 1; |
fMaxColorSampleCount = 0; |
@@ -182,6 +183,7 @@ SkString GrCaps::dump() const { |
r.appendf("Advanced Blend Equation Blacklist : 0x%x\n", fAdvBlendEqBlacklist); |
} |
+ r.appendf("Max Vertex Attributes : %d\n", fMaxVertexAttributes); |
r.appendf("Max Texture Size : %d\n", fMaxTextureSize); |
r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize); |
r.appendf("Max Color Sample Count : %d\n", fMaxColorSampleCount); |