| Index: src/gpu/gl/GrGLUtil.cpp
 | 
| diff --git a/src/gpu/gl/GrGLUtil.cpp b/src/gpu/gl/GrGLUtil.cpp
 | 
| index 87e2f83a289cf34f6c74cc79ef91a9ade3b6b1c5..a479523b65b839aaf119d3d2608c3b175a92e870 100644
 | 
| --- a/src/gpu/gl/GrGLUtil.cpp
 | 
| +++ b/src/gpu/gl/GrGLUtil.cpp
 | 
| @@ -213,7 +213,7 @@ GrGLVendor GrGLGetVendorFromString(const char* vendorString) {
 | 
|          if (0 == strcmp(vendorString, "Imagination Technologies")) {
 | 
|              return kImagination_GrGLVendor;
 | 
|          }
 | 
| -        if (0 == strcmp(vendorString, "Intel")) {
 | 
| +        if (0 == strncmp(vendorString, "Intel ", 6) || 0 == strcmp(vendorString, "Intel")) {
 | 
|              return kIntel_GrGLVendor;
 | 
|          }
 | 
|          if (0 == strcmp(vendorString, "Qualcomm")) {
 | 
| 
 |