| Index: src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp | 
| diff --git a/src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp b/src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp | 
| index 0d06b2d600caeebe8e0073448d40b824fc1699d5..e4f5467842c3c3f3d72e3ddc9975592b5dc86c69 100644 | 
| --- a/src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp | 
| +++ b/src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp | 
| @@ -16,7 +16,7 @@ | 
|  | 
| static GrGLFuncPtr angle_get_gl_proc(void* ctx, const char name[]) { | 
| GrGLFuncPtr proc = (GrGLFuncPtr) GetProcAddress((HMODULE)ctx, name); | 
| -    if (NULL != proc) { | 
| +    if (proc) { | 
| return proc; | 
| } | 
| return eglGetProcAddress(name); | 
|  |