Chromium Code Reviews| Index: src/gpu/gl/GrGLUtil.cpp |
| diff --git a/src/gpu/gl/GrGLUtil.cpp b/src/gpu/gl/GrGLUtil.cpp |
| index 886557e2727a07d4fc2511ab70fc13e26b72cc75..7d44ba59316b3e843c0ce1eae1cbe7b40656848b 100644 |
| --- a/src/gpu/gl/GrGLUtil.cpp |
| +++ b/src/gpu/gl/GrGLUtil.cpp |
| @@ -75,6 +75,10 @@ bool get_gl_version_for_mesa(int mesaMajorVersion, int* major, int* minor) { |
| *major = 3; |
| *minor = 1; |
| return true; |
| + case 10: |
| + *major = 3; |
| + *minor = 3; |
| + return true; |
| default: |
| return false; |
| } |