Index: bench/nanobench.cpp |
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp |
index 2fba1f053373c21e9aba473d65b79111f0464aaa..cd15580afbbd14d7fd477188822b9c030d9c7ef3 100644 |
--- a/bench/nanobench.cpp |
+++ b/bench/nanobench.cpp |
@@ -43,6 +43,7 @@ |
#if SK_SUPPORT_GPU |
#include "gl/GrGLDefines.h" |
+ #include "GrCaps.h" |
#include "GrContextFactory.h" |
SkAutoTDelete<GrContextFactory> gGrFactory; |
#endif |
@@ -372,7 +373,7 @@ static bool is_gpu_config_allowed(const char* name, GrContextFactory::GLContextT |
return false; |
} |
if (const GrContext* ctx = gGrFactory->get(ctxType)) { |
- return sampleCnt <= ctx->getMaxSampleCount(); |
+ return sampleCnt <= ctx->caps()->maxSampleCount(); |
} |
return false; |
} |