| Index: src/gpu/gl/GrGLInterface.cpp
|
| diff --git a/src/gpu/gl/GrGLInterface.cpp b/src/gpu/gl/GrGLInterface.cpp
|
| index 89e23f79f156946826ec97c3b6a8794c2f72c442..823b73efa38a4725ee7765a8c420919b5347a577 100644
|
| --- a/src/gpu/gl/GrGLInterface.cpp
|
| +++ b/src/gpu/gl/GrGLInterface.cpp
|
| @@ -45,6 +45,7 @@ const GrGLInterface* GrGLInterfaceRemoveNVPR(const GrGLInterface* interface) {
|
| newInterface->fFunctions.fPathParameterf = NULL;
|
| newInterface->fFunctions.fGenPaths = NULL;
|
| newInterface->fFunctions.fDeletePaths = NULL;
|
| + newInterface->fFunctions.fIsPath = NULL;
|
| newInterface->fFunctions.fPathStencilFunc = NULL;
|
| newInterface->fFunctions.fStencilFillPath = NULL;
|
| newInterface->fFunctions.fStencilStrokePath = NULL;
|
| @@ -457,6 +458,7 @@ bool GrGLInterface::validate() const {
|
| NULL == fFunctions.fPathParameterf ||
|
| NULL == fFunctions.fGenPaths ||
|
| NULL == fFunctions.fDeletePaths ||
|
| + NULL == fFunctions.fIsPath ||
|
| NULL == fFunctions.fPathStencilFunc ||
|
| NULL == fFunctions.fStencilFillPath ||
|
| NULL == fFunctions.fStencilStrokePath ||
|
|
|