Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Unified Diff: ui/gl/gl_implementation.cc

Issue 2680423002: Introducing 2 usages for SwiftShader (Closed)
Patch Set: Added missing change to GpuDataManagerImplPrivate Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/gl_implementation.h ('k') | ui/gl/gl_surface_egl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ui/gl/gl_implementation.h ('k') | ui/gl/gl_surface_egl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698