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

Side by Side Diff: ui/gl/gl_implementation_ozone.cc

Issue 1542013005: Add a new driver bug workaround SANDBOX_START_EARLY Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just rebase Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "ui/gl/gl_bindings.h" 6 #include "ui/gl/gl_bindings.h"
7 #include "ui/gl/gl_context_stub_with_extensions.h" 7 #include "ui/gl/gl_context_stub_with_extensions.h"
8 #include "ui/gl/gl_egl_api_implementation.h" 8 #include "ui/gl/gl_egl_api_implementation.h"
9 #include "ui/gl/gl_gl_api_implementation.h" 9 #include "ui/gl/gl_gl_api_implementation.h"
10 #include "ui/gl/gl_implementation.h" 10 #include "ui/gl/gl_implementation.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) { 113 bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) {
114 switch (GetGLImplementation()) { 114 switch (GetGLImplementation()) {
115 case kGLImplementationEGLGLES2: 115 case kGLImplementationEGLGLES2:
116 return GetGLWindowSystemBindingInfoEGL(info); 116 return GetGLWindowSystemBindingInfoEGL(info);
117 default: 117 default:
118 return false; 118 return false;
119 } 119 }
120 return false; 120 return false;
121 } 121 }
122 122
123 bool GetNativeLibraryNamesFromGLImplementation(
124 GLImplementation implementation,
125 std::vector<std::string>* required_libraries) {
126 NOTIMPLEMENTED();
127 return false;
128 }
129
123 } // namespace gfx 130 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698