| Index: src/gpu/GrContext.cpp
|
| diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp
|
| index 66588c46bce32c1f161e52ce532e3ca2d8ecf6a9..e8ae18a4e225594c8da0dccf84ede68b454f3a3e 100644
|
| --- a/src/gpu/GrContext.cpp
|
| +++ b/src/gpu/GrContext.cpp
|
| @@ -618,7 +618,7 @@ bool GrContext::supportsIndex8PixelConfig(const GrTextureParams* params,
|
| return false;
|
| }
|
|
|
| - bool isPow2 = GrIsPow2(width) && GrIsPow2(height);
|
| + bool isPow2 = SkIsPow2(width) && SkIsPow2(height);
|
|
|
| if (!isPow2) {
|
| bool tiled = NULL != params && params->isTiled();
|
|
|