Chromium Code Reviews| Index: ui/gl/gl_implementation.cc |
| diff --git a/ui/gl/gl_implementation.cc b/ui/gl/gl_implementation.cc |
| index b4ca6c721737eecc4b727e4d32b0f5009bc6efc2..73154b34e266b88cbc43cd57965ca78c6f89f553 100644 |
| --- a/ui/gl/gl_implementation.cc |
| +++ b/ui/gl/gl_implementation.cc |
| @@ -29,14 +29,14 @@ const struct { |
| const char* name; |
| GLImplementation implementation; |
| } kGLImplementationNamePairs[] = { |
| - { kGLImplementationDesktopName, kGLImplementationDesktopGL }, |
| - { kGLImplementationOSMesaName, kGLImplementationOSMesaGL }, |
| + {kGLImplementationDesktopName, kGLImplementationDesktopGL}, |
| + {kGLImplementationOSMesaName, kGLImplementationOSMesaGL}, |
| + {kGLImplementationSwiftShaderName, kGLImplementationSwiftShaderGL}, |
| #if defined(OS_MACOSX) |
| - { kGLImplementationAppleName, kGLImplementationAppleGL }, |
| + {kGLImplementationAppleName, kGLImplementationAppleGL}, |
| #endif |
| - { kGLImplementationEGLName, kGLImplementationEGLGLES2 }, |
| - { kGLImplementationMockName, kGLImplementationMockGL } |
| -}; |
| + {kGLImplementationEGLName, kGLImplementationEGLGLES2}, |
| + {kGLImplementationMockName, kGLImplementationMockGL}}; |
|
sugoi1
2017/02/10 16:39:37
Note: The whitespace changes are from 'git cl form
|
| typedef std::vector<base::NativeLibrary> LibraryArray; |