| Index: src/gpu/GrContext.cpp
|
| diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp
|
| index 66a86f3269b80b16de65d51fdf0fe9e27f39319f..dd45b25090d1491193a937c66dd64e7db0ce6631 100644
|
| --- a/src/gpu/GrContext.cpp
|
| +++ b/src/gpu/GrContext.cpp
|
| @@ -1687,9 +1687,8 @@ GrPathRenderer* GrContext::getPathRenderer(const SkPath& path,
|
| }
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
| -
|
| -bool GrContext::isConfigRenderable(GrPixelConfig config) const {
|
| - return fGpu->caps()->isConfigRenderable(config);
|
| +bool GrContext::isConfigRenderable(GrPixelConfig config, bool withMSAA) const {
|
| + return fGpu->caps()->isConfigRenderable(config, withMSAA);
|
| }
|
|
|
| static inline intptr_t setOrClear(intptr_t bits, int shift, intptr_t pred) {
|
|
|