Index: src/gpu/gl/GrGLInterface.cpp |
diff --git a/src/gpu/gl/GrGLInterface.cpp b/src/gpu/gl/GrGLInterface.cpp |
index 9f58c732216c4bef9ea31197a07331c80e4e4b90..56f1e59275687e66996ba95f1c4954f0aa28fec6 100644 |
--- a/src/gpu/gl/GrGLInterface.cpp |
+++ b/src/gpu/gl/GrGLInterface.cpp |
@@ -59,7 +59,6 @@ |
newInterface->fFunctions.fStencilThenCoverFillPathInstanced = NULL; |
newInterface->fFunctions.fStencilThenCoverStrokePathInstanced = NULL; |
newInterface->fFunctions.fProgramPathFragmentInputGen = NULL; |
- newInterface->fFunctions.fBindFragmentInputLocation = NULL; |
return newInterface; |
} |
@@ -484,7 +483,7 @@ |
#endif |
} |
- if (fExtensions.has("GL_NV_path_rendering") || fExtensions.has("GL_CHROMIUM_path_rendering")) { |
+ if (fExtensions.has("GL_NV_path_rendering")) { |
if (NULL == fFunctions.fMatrixLoadf || |
NULL == fFunctions.fMatrixLoadIdentity || |
NULL == fFunctions.fPathCommands || |
@@ -515,11 +514,6 @@ |
#endif |
) { |
RETURN_FALSE_INTERFACE |
- } |
- if (fExtensions.has("GL_CHROMIUM_path_rendering")) { |
- if (NULL == fFunctions.fBindFragmentInputLocation) { |
- RETURN_FALSE_INTERFACE |
- } |
} |
} |