diff options
Diffstat (limited to 'bench')
-rw-r--r-- | bench/nanobench.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp index b9ecfa7b51..f7f0bff82b 100644 --- a/bench/nanobench.cpp +++ b/bench/nanobench.cpp @@ -428,7 +428,8 @@ static void create_config(const SkCommandLineConfig* config, SkTArray<Config>* c if (const GrContext* ctx = factory.get(ctxType, ctxOverrides)) { GrPixelConfig grPixConfig = SkImageInfo2GrPixelConfig(colorType, colorSpace, *ctx->caps()); - int supportedSampleCount = ctx->caps()->getSampleCount(sampleCount, grPixConfig); + int supportedSampleCount = + ctx->caps()->getRenderTargetSampleCount(sampleCount, grPixConfig); if (sampleCount != supportedSampleCount) { SkDebugf("Configuration '%s' sample count %d is not a supported sample count.\n", config->getTag().c_str(), sampleCount); |