| Index: src/gpu/GrCaps.cpp
|
| diff --git a/src/gpu/GrCaps.cpp b/src/gpu/GrCaps.cpp
|
| index 33c22be9a01207c21c9399d3196ce842683e0e92..19ef38c49d244fe226e47e3232fe5457ed1e8f29 100644
|
| --- a/src/gpu/GrCaps.cpp
|
| +++ b/src/gpu/GrCaps.cpp
|
| @@ -118,6 +118,7 @@ GrCaps::GrCaps(const GrContextOptions& options) {
|
| fMaxColorSampleCount = 0;
|
| fMaxStencilSampleCount = 0;
|
| fMaxRasterSamples = 0;
|
| + fMaxWindowRectangles = 0;
|
|
|
| fSuppressPrints = options.fSuppressPrints;
|
| fImmediateFlush = options.fImmediateMode;
|
| @@ -197,6 +198,7 @@ SkString GrCaps::dump() const {
|
| r.appendf("Max Color Sample Count : %d\n", fMaxColorSampleCount);
|
| r.appendf("Max Stencil Sample Count : %d\n", fMaxStencilSampleCount);
|
| r.appendf("Max Raster Samples : %d\n", fMaxRasterSamples);
|
| + r.appendf("Max Window Rectangles : %d\n", fMaxWindowRectangles);
|
|
|
| static const char* kInstancedSupportNames[] = {
|
| "None",
|
|
|